Provide miscellaneous methods that are used by the data configuration array.
Inheritance: extends Backend
示例#1
0
 /**
  * Import the back end user object
  */
 public function __construct()
 {
     parent::__construct();
     $this->import('BackendUser', 'User');
 }
示例#2
0
 /**
  * Import the back end user object
  */
 public function __construct()
 {
     parent::__construct();
     $this->import("Database");
     $this->objUser = \Database::getInstance()->prepare("SELECT * FROM tl_member WHERE id = ?")->execute(\Input::get('id'));
 }
示例#3
0
 /**
  * Constructor, initialize the object.
  */
 public function __construct()
 {
     parent::__construct();
 }