Ejemplo n.º 1
0
 public function __construct()
 {
     $this->object = "user";
     //We have some User Data. They are stored in an array in the session
     if (!isset($_SESSION['user'])) {
         $_SESSION['user'] = array('id' => 0, 'name' => 'guest', 'admin' => 0);
     }
     parent::__construct();
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->eventManager = new eventManager();
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     $this->object = "gallery";
     parent::__construct();
 }