public function __construct()
 {
     parent::__construct();
     // AjaxPage uses 'result' instead of 'response':
     $this->_Result = new XMLElement('response');
     $this->_Result->setIncludeHeader(true);
     $this->panelId = isset($_REQUEST['id']) ? $_REQUEST['id'] : null;
     $this->panelConfig = isset($_REQUEST['config']) ? $_REQUEST['config'] : null;
     $this->panelLabel = isset($_REQUEST['label']) ? $_REQUEST['label'] : null;
     $this->panelPlacement = isset($_REQUEST['placement']) ? $_REQUEST['placement'] : null;
     $this->panelType = isset($_REQUEST['type']) ? $_REQUEST['type'] : null;
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->library('towing/Dossier_service');
     $this->load->library('towing/Vocabulary_service');
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->library('towing/Invoice_service');
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->_Result = array();
 }