Пример #1
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'manage';
     $this->child_nav_active = 'collect';
     $this->grandchild_nav_active = 'collect';
     $this->rsp = Response::instance();
 }
Пример #2
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'display';
     $this->child_nav_active = 'tags';
     $this->grandchild_nav_active = 'main';
     $this->tag_id = isset($_GET['id']) ? $_GET['id'] : NULL;
     $this->rsp = Response::Instance();
 }
Пример #3
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'manage';
     $this->active_tag = isset($_GET['tag']) ? $_GET['tag'] : 'all';
     $this->publish = isset($_GET['publish']) ? $_GET['publish'] : NULL;
     $this->active_rating = isset($_GET['rating']) ? $_GET['rating'] : 'all';
     $this->active_range = isset($_GET['range']) ? $_GET['range'] : 'all';
     $this->active_page = (isset($_GET['page']) and is_numeric($_GET['page'])) ? $_GET['page'] : 1;
     $this->testimonial_id = isset($_GET['id']) ? valid::id_key($_GET['id']) : NULL;
     # prep the ajax response
     $this->rsp = Response::instance();
 }
Пример #4
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'display';
     $this->rsp = Response::instance();
 }
Пример #5
0
 public function __construct()
 {
     parent::__construct();
 }
Пример #6
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'install';
     $this->child_nav_active = 'main';
 }
Пример #7
0
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'collect';
     $this->requests = (isset($_GET['requests']) and is_numeric($_GET['requests'])) ? $_GET['requests'] : FALSE;
 }