Ejemplo n.º 1
0
 /**
  * @param           $objPDO
  * @param null      $ID_Data
  * @param bool|true $ResultSet
  */
 public function __construct($objPDO, $ID_Data = null, $ResultSet = true)
 {
     $this->authAccessLevels = [];
     $this->authUserGroups = [];
     $this->arSystemMessages = [];
     $this->arSystemMessagesElement = [];
     $this->blAssignedMessages = false;
     parent::__construct($objPDO, $ID_Data, $ResultSet);
 }
Ejemplo n.º 2
0
 /**
  * @param           $objPDO
  * @param null      $ID_Data
  * @param bool|true $ResultSet
  */
 public function __construct($objPDO, $ID_Data, $ResultSet = true)
 {
     parent::__construct($objPDO, $ID_Data, $ResultSet);
     $this->ControllerType = $this->defineControllerType();
     $this->View = [];
 }
Ejemplo n.º 3
0
 /**
  * @param           $objPDO
  * @param null      $ID_Data
  * @param bool|true $ResultSet
  */
 public function __construct($objPDO, $ID_Data, $ResultSet = true)
 {
     parent::__construct($objPDO, $ID_Data, $ResultSet);
     $this->StyleSheets = [];
     $this->JavaScripts = [];
     $this->Positions = [];
     $this->DefaultTemplate = $this->defineDefaultTemplate();
     $this->DefaultXHRTemplate = $this->defineDefaultXHRTemplate();
     $this->setLanguageFile();
 }
Ejemplo n.º 4
0
 /**
  * Language constructor
  *
  * @param DatabaseHandler $objPDO
  * @param mixed           $ID_Data
  * @param bool|true       $ResultSet
  */
 public function __construct($objPDO, $ID_Data, $ResultSet = true)
 {
     parent::__construct($objPDO, $ID_Data, $ResultSet);
     $this->arImportedFiles = [];
     $this->arStrings = [];
 }