/**
  * Constructor
  *
  * @param null $basepath        Not used - needed for Joomla 3.4 compatibility.
  * @param null $classprefix     Not used - needed for Joomla 3.4 compatibility.
  * @param null $adapterfolder   Not used - needed for Joomla 3.4 compatibility.
  */
 public function __construct($basepath = null, $classprefix = null, $adapterfolder = null)
 {
     parent::__construct();
     $this->_basepath = dirname(__FILE__);
     $this->_classprefix = 'RokInstaller';
     $this->_adapterfolder = 'adapters';
 }
Exemplo n.º 2
0
 public function __construct($basepath = __DIR__, $classprefix = 'TZ_Portfolio_PlusInstallerAdapter', $adapterfolder = 'adapter')
 {
     parent::__construct($basepath, $classprefix, $adapterfolder);
     // Get a generic TZ_Portfolio_PlusTableExtension instance for use if not already loaded
     if (!$this->extension instanceof TZ_Portfolio_PlusTableExtensions) {
         JTable::addIncludePath(COM_TZ_PORTFOLIO_PLUS_ADMIN_PATH . DIRECTORY_SEPARATOR . 'tables');
         $this->extension = JTable::getInstance('Extensions', 'TZ_Portfolio_PlusTable');
     }
     if (is_object($this->extension) && isset($this->extension->id)) {
         $this->extension->extension_id = $this->extension->id;
     }
 }
Exemplo n.º 3
0
 function __construct()
 {
     parent::__construct();
 }