Esempio n. 1
0
 /**
  * contructor, creates database handle
  * @access public
  */
 public function __construct()
 {
     Logger::log("Enter: Group::__construct");
     parent::__construct();
     $this->acl_object = new Access();
     Logger::log("Exit: Group::__construct");
 }
Esempio n. 2
0
 /**
  * contructor, creates database handle
  * @access public
  */
 public function __construct($album_type = 0)
 {
     Logger::log("Enter: Album::__construct");
     parent::__construct();
     // For album type id is 2
     $this->type = 2;
     $this->album_type = $album_type;
     Logger::log("Exit: Album::__construct");
 }
Esempio n. 3
0
 /**
  * contructor, creates database handle
  * @access public
  */
 public function __construct()
 {
     Logger::log("Enter: Group::__construct");
     parent::__construct();
     $this->acl_object = new Access();
     $this->type = GROUP_COLLECTION_TYPE;
     Logger::log("Exit: Group::__construct");
 }