本文整理汇总了PHP中admin::admin_access方法的典型用法代码示例。如果您正苦于以下问题:PHP admin::admin_access方法的具体用法?PHP admin::admin_access怎么用?PHP admin::admin_access使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类admin
的用法示例。
在下文中一共展示了admin::admin_access方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
// Load cache
$this->cache = new Cache();
// Load session
$this->session = new Session();
// Load database
$this->db = new Database();
$upgrade = new Upgrade();
$this->auth = new Auth();
$this->session = Session::instance();
$this->auth->auto_login();
if (!$this->auth->logged_in('login')) {
url::redirect('login');
}
// Set Table Prefix
$this->table_prefix = Kohana::config('database.default.table_prefix');
//fetch latest release of ushahidi
$this->release = $upgrade->_fetch_core_release();
if (!empty($this->release)) {
$this->template->version = $this->_get_release_version();
$this->template->critical = $this->release->critical;
}
// Get Session Information
$this->user = new User_Model($_SESSION['auth_user']->id);
// Check if user has the right to see the admin panel
if (admin::admin_access($this->user) == FALSE) {
// This user isn't allowed in the admin panel
url::redirect('/');
}
$this->template->admin_name = $this->user->name;
// Retrieve Default Settings
$this->template->site_name = Kohana::config('settings.site_name');
$this->template->mapstraction = Kohana::config('settings.mapstraction');
$this->template->api_url = Kohana::config('settings.api_url');
// Javascript Header
$this->template->map_enabled = FALSE;
$this->template->flot_enabled = FALSE;
$this->template->treeview_enabled = FALSE;
$this->template->protochart_enabled = FALSE;
$this->template->colorpicker_enabled = FALSE;
$this->template->editor_enabled = FALSE;
$this->template->js = '';
$this->template->form_error = FALSE;
// Initialize some variables for raphael impact charts
$this->template->raphael_enabled = FALSE;
$this->template->impact_json = '';
// Generate main tab navigation list.
$this->template->main_tabs = admin::main_tabs();
// Generate sub navigation list (in default layout, sits on right side).
$this->template->main_right_tabs = admin::main_right_tabs($this->user);
$this->template->this_page = "";
// Load profiler
// $profiler = new Profiler;
}
示例2: __construct
public function __construct()
{
parent::__construct();
// Load cache
$this->cache = new Cache();
// Load session
$this->session = new Session();
// Load database
$this->db = new Database();
$this->session = Session::instance();
// Themes Helper
$this->themes = new Themes();
// Admin is not logged in, or this is a member (not admin)
if (!$this->auth->logged_in('login') or $this->auth->logged_in('member')) {
url::redirect('login');
}
// Set Table Prefix
$this->table_prefix = Kohana::config('database.default.table_prefix');
// Get the no. of items to display setting
$this->items_per_page = (int) Kohana::config('settings.items_per_page_admin');
// Get Session Information
$this->user = new User_Model($_SESSION['auth_user']->id);
// Check if user has the right to see the admin panel
if (admin::admin_access($this->user) == FALSE) {
// This user isn't allowed in the admin panel
url::redirect('/');
}
$this->template->admin_name = $this->user->name;
// Retrieve Default Settings
$this->template->site_name = Kohana::config('settings.site_name');
$this->template->mapstraction = Kohana::config('settings.mapstraction');
$this->template->api_url = Kohana::config('settings.api_url');
// Javascript Header
$this->template->map_enabled = FALSE;
$this->template->datepicker_enabled = FALSE;
$this->template->flot_enabled = FALSE;
$this->template->treeview_enabled = FALSE;
$this->template->protochart_enabled = FALSE;
$this->template->colorpicker_enabled = FALSE;
$this->template->editor_enabled = FALSE;
$this->template->tablerowsort_enabled = FALSE;
$this->template->json2_enabled = FALSE;
$this->template->js = '';
$this->template->form_error = FALSE;
// Initialize some variables for raphael impact charts
$this->template->raphael_enabled = FALSE;
$this->template->impact_json = '';
// Generate main tab navigation list.
$this->template->main_tabs = admin::main_tabs();
// Generate sub navigation list (in default layout, sits on right side).
$this->template->main_right_tabs = admin::main_right_tabs($this->user);
$this->template->this_page = "";
// Load profiler
// $profiler = new Profiler;
// Header Nav
$header_nav = new View('header_nav');
$this->template->header_nav = $header_nav;
$this->template->header_nav->loggedin_user = FALSE;
if (isset(Auth::instance()->get_user()->id)) {
// Load User
$this->template->header_nav->loggedin_role = Auth::instance()->logged_in('member') ? "members" : "admin";
$this->template->header_nav->loggedin_user = Auth::instance()->get_user();
}
$this->template->header_nav->site_name = Kohana::config('settings.site_name');
// Header and Footer Blocks
$this->template->header_block = $this->themes->admin_header_block();
$this->template->footer_block = $this->themes->footer_block();
}