/** * 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); }
public function __construct(array $config) { $this->dom = new DOMDocument('1.0', 'utf-8'); $this->dom->preserveWhiteSpace = false; $this->dom->formatOutput = true; parent::__construct($config); }
function __construct() { if (!defined('_FABRIKFORMSESSION_LOADED_FROM_COOKIE')) { define('_FABRIKFORMSESSION_LOADED_FROM_COOKIE', 1); define('_FABRIKFORMSESSION_LOADED_FROM_TABLE', 2); } parent::__construct(); }
/** * (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); }
/** * @param database A database connector object */ function __construct() { parent::__construct(); }
/** * 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); }