public function __construct() { parent::__construct(); $this->parent_nav_active = 'manage'; $this->child_nav_active = 'collect'; $this->grandchild_nav_active = 'collect'; $this->rsp = Response::instance(); }
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(); }
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(); }
public function __construct() { parent::__construct(); $this->parent_nav_active = 'display'; $this->rsp = Response::instance(); }
public function __construct() { parent::__construct(); }
public function __construct() { parent::__construct(); $this->parent_nav_active = 'install'; $this->child_nav_active = 'main'; }
public function __construct() { parent::__construct(); $this->parent_nav_active = 'collect'; $this->requests = (isset($_GET['requests']) and is_numeric($_GET['requests'])) ? $_GET['requests'] : FALSE; }