示例#1
0
 public function __construct()
 {
     parent::__construct();
     $iaBlock = $this->_iaCore->factory('block', iaCore::ADMIN);
     $this->setHelper($iaBlock);
     $this->setTable(iaBlock::getTable());
 }
示例#2
0
 public function __construct()
 {
     parent::__construct();
     $iaTransaction = $this->_iaCore->factory('transaction');
     $this->setHelper($iaTransaction);
     $this->setTable(iaTransaction::getTable());
 }
 public function __construct()
 {
     parent::__construct();
     $this->_pluginName = IA_CURRENT_PLUGIN;
     $this->_template = 'manage';
     $this->init();
 }
示例#4
0
 public function __construct()
 {
     parent::__construct();
     $iaField = $this->_iaCore->factory('field');
     $this->setHelper($iaField);
     $this->_iaCore->factory('picture');
 }
示例#5
0
 public function __construct()
 {
     parent::__construct();
     $iaPage = $this->_iaCore->factory('page', iaCore::ADMIN);
     $this->setHelper($iaPage);
     $this->setTable(iaPage::getTable());
 }
示例#6
0
 public function __construct()
 {
     ini_get('safe_mode') || set_time_limit(180);
     parent::__construct();
     $iaDbControl = $this->_iaCore->factory('dbcontrol', iaCore::ADMIN);
     $this->setHelper($iaDbControl);
 }
示例#7
0
 public function __construct()
 {
     parent::__construct();
     $iaAcl = $this->_iaCore->factory('acl');
     $this->setHelper($iaAcl);
     $this->_objects = $iaAcl->getObjects();
 }
示例#8
0
 public function __construct()
 {
     parent::__construct();
     $iaField = $this->_iaCore->factory('field');
     $this->setHelper($iaField);
     $this->setTable(iaField::getTableGroups());
     $this->_itemsList = $this->_iaCore->factory('item')->getItems();
 }
示例#9
0
 public function __construct()
 {
     parent::__construct();
     $iaExtra = $this->_iaCore->factory('extra', iaCore::ADMIN);
     $this->setHelper($iaExtra);
     $this->setTable(iaExtra::getTable());
     $this->_folder = IA_PACKAGES;
 }
示例#10
0
 public function __construct()
 {
     parent::__construct();
     $iaUsers = $this->_iaCore->factory('users');
     $this->setHelper($iaUsers);
     $this->_itemName = $iaUsers->getItemName();
     $this->_userGroups = $iaUsers->getUsergroups();
 }
示例#11
0
 public function __construct()
 {
     parent::__construct();
     $iaPlan = $this->_iaCore->factory('plan');
     $this->setHelper($iaPlan);
     $this->setTable(iaPlan::getTable());
     $this->_fields = $this->_getFieldsList();
     $this->_items = $this->_iaCore->factory('item')->getItems(true);
 }
 public function __construct()
 {
     parent::__construct();
     $this->_iaField = $this->_iaCore->factory('field');
     $this->_packageName = IA_CURRENT_PACKAGE;
     $this->_path = IA_ADMIN_URL . $this->getPackageName() . IA_URL_DELIMITER . $this->getName() . IA_URL_DELIMITER;
     $this->_template = 'form-' . $this->getName();
     if ($this->_activityLog) {
         is_array($this->_activityLog) || ($this->_activityLog = array());
         $this->_activityLog['path'] = $this->getPackageName() . IA_URL_DELIMITER . $this->getName();
         isset($this->_activityLog['item']) || ($this->_activityLog['item'] = substr($this->getItemName(), 0, -1));
     }
     if ($this->_helperName) {
         $helperClass = $this->_iaCore->factoryPackage($this->_helperName, $this->getPackageName(), iaCore::ADMIN);
         $this->setHelper($helperClass);
         $this->getItemName() || $this->_setItemName($helperClass->getItemName());
         $this->setTable($helperClass::getTable());
     }
     $this->init();
 }
示例#13
0
 public function __construct()
 {
     parent::__construct();
     $this->setTable(iaCore::getConfigTable());
 }
示例#14
0
 public function __construct()
 {
     parent::__construct();
     $this->setTable(iaLanguage::getTable());
     $this->setHelper($this->_iaCore->iaCache);
 }
示例#15
0
 public function __construct()
 {
     parent::__construct();
     $iaTemplate = $this->_iaCore->factory('template', iaCore::ADMIN);
     $this->setHelper($iaTemplate);
 }
示例#16
0
 public function __construct()
 {
     parent::__construct();
     $this->setTable(iaUsers::getUsergroupsTable());
     $this->_iaUsers = $this->_iaCore->factory('users');
 }
示例#17
0
 public function __construct()
 {
     parent::__construct();
     $iaDbControl = $this->_iaCore->factory('dbcontrol', iaCore::ADMIN);
     $this->setHelper($iaDbControl);
 }
示例#18
0
 public function __construct()
 {
     parent::__construct();
     $this->setHelper($this->_iaCore->factory('invoice'));
     $this->setTable(iaInvoice::getTable());
 }