Пример #1
0
 /**
  * constructor to set up the object.
  *
  * @since 1.0
  */
 public function __construct()
 {
     self::$logger = new Logger('DEnumController');
     self::$logger->debug('>>__construct()');
     // ensure that the super class constructor is called, indicating the rights group
     parent::__construct('Admin');
     $this->BO = new DEnum();
     self::$logger->debug('<<__construct');
 }
Пример #2
0
 /**
  * constructor to set up the object.
  *
  * @since 1.0
  */
 public function __construct()
 {
     self::$logger = new Logger('SequenceController');
     self::$logger->debug('>>__construct()');
     // ensure that the super class constructor is called, indicating the rights group
     parent::__construct('Admin');
     // set up the title and meta details
     $this->setTitle('Listing all Sequences');
     $this->setDescription('Page to list all Sequences.');
     $this->setKeywords('list,all,Sequences');
     self::$logger->debug('<<__construct');
 }
Пример #3
0
 /**
  * constructor to set up the object.
  *
  * @since 1.0
  */
 public function __construct()
 {
     self::$logger = new Logger('TagController');
     self::$logger->debug('>>__construct()');
     // ensure that the super class constructor is called, indicating the rights group
     parent::__construct('Admin');
     // set up the title and meta details
     $this->setTitle('Editing Tags');
     $this->setDescription('Page to edit tags.');
     $this->setKeywords('edit,tags');
     self::$logger->debug('<<__construct');
 }
Пример #4
0
 /**
  * constructor to set up the object.
  *
  * @since 1.0
  */
 public function __construct()
 {
     self::$logger = new Logger('ArticleController');
     self::$logger->debug('>>__construct()');
     // ensure that the super class constructor is called, indicating the rights group
     parent::__construct('Public');
     self::$logger->debug('<<__construct');
 }