Example #1
0
 /**
  * Constructor
  *
  * @param   array  $config  An array of configuration options (name, state, dbo, table_path, ignore_request).
  *
  * @since   11.1
  */
 public function __construct($config = array())
 {
     $this->pathBase = JPATH_SITE . '/plugins/fabrik_visualization/';
     // 3.0 compat
     $this->_row =& $this->row;
     parent::__construct($config);
 }
Example #2
0
 public function __construct(array $config)
 {
     $this->dom = new DOMDocument('1.0', 'utf-8');
     $this->dom->preserveWhiteSpace = false;
     $this->dom->formatOutput = true;
     parent::__construct($config);
 }
Example #3
0
 function __construct()
 {
     if (!defined('_FABRIKFORMSESSION_LOADED_FROM_COOKIE')) {
         define('_FABRIKFORMSESSION_LOADED_FROM_COOKIE', 1);
         define('_FABRIKFORMSESSION_LOADED_FROM_TABLE', 2);
     }
     parent::__construct();
 }
Example #4
0
 /**
  * (un)publish the package & all its tables
  */
 function publish($state)
 {
     foreach ($this->_tables as $oTable) {
         $oTable->publish($oTable->id, $state);
     }
     parent::publish($this->id, $state);
 }
Example #5
0
 /**
  * @param database A database connector object
  */
 function __construct()
 {
     parent::__construct();
 }
Example #6
0
 /**
  * Constructor
  *
  * @param   array  $config  An array of configuration options (name, state, dbo, table_path, ignore_request).
  *
  * @since       1.5
  */
 public function __construct($config = array())
 {
     parent::__construct($config);
 }