/**
  * @param Element $element
  * @param int $applicationId
  * @param string $itemType
  */
 function __construct(Element $element, $applicationId, $itemType)
 {
     parent::__construct();
     $this->_element = $element;
     $this->_itemType = $itemType;
     $this->_config = $element->config;
     $this->_identifier = $element->identifier;
     $this->_applicationId = $applicationId;
 }
Exemple #2
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     $this->app->jbtables->checkOrder();
 }
Exemple #3
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     $this->app->jbtables->checkConfig();
     $this->_init();
 }
Exemple #4
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     $this->_table = $this->app->table->item;
 }