コード例 #1
0
ファイル: form.php プロジェクト: plusjade/pluspanda-php
 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
ファイル: tags.php プロジェクト: plusjade/pluspanda-php
 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
ファイル: manage.php プロジェクト: plusjade/pluspanda-php
 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
ファイル: display.php プロジェクト: plusjade/pluspanda-php
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'display';
     $this->rsp = Response::instance();
 }
コード例 #5
0
ファイル: help.php プロジェクト: plusjade/pluspanda-php
 public function __construct()
 {
     parent::__construct();
 }
コード例 #6
0
ファイル: install.php プロジェクト: plusjade/pluspanda-php
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'install';
     $this->child_nav_active = 'main';
 }
コード例 #7
0
ファイル: collect.php プロジェクト: plusjade/pluspanda-php
 public function __construct()
 {
     parent::__construct();
     $this->parent_nav_active = 'collect';
     $this->requests = (isset($_GET['requests']) and is_numeric($_GET['requests'])) ? $_GET['requests'] : FALSE;
 }