本文整理汇总了PHP中Menu_helper::get_permission方法的典型用法代码示例。如果您正苦于以下问题:PHP Menu_helper::get_permission方法的具体用法?PHP Menu_helper::get_permission怎么用?PHP Menu_helper::get_permission使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Menu_helper
的用法示例。
在下文中一共展示了Menu_helper::get_permission方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('report/upload_income/upload_income_report_list');
$this->lang->load("report", $this->get_language());
}
示例2: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('admin/Find_suggestion');
$this->controller_url = 'admin/Find_suggestion';
$this->load->model("admin/Find_suggestion_model");
}
示例3: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('esheba_management/External_service');
$this->controller_url = 'esheba_management/external_service';
//$this->load->model("esheba_management/External_service_model");
}
示例4: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('report/registered_union_list');
$this->controller_url = 'report/registered_union_list';
$this->lang->load("report", $this->get_language());
//$this->load->model("basic_setup/registered_union_list_model");
}
示例5: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('profile/User_profile_update');
$this->controller_url = 'profile/User_profile_update';
$this->load->model("profile/User_profile_update_model");
$this->lang->load("user_create", $this->get_language());
}
示例6: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('report/uisc_invested_money_list');
$this->controller_url = 'report/uisc_invested_money_list';
$this->lang->load("report", $this->get_language());
$this->load->model("report/uisc_report_model");
}
示例7: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('faq_management/Question_create');
$this->controller_url = 'faq_management/Question_create';
$this->load->model("faq_management/Question_create_model");
$this->permissions['view'] = '';
}
示例8: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('report/profile_update_status/Profile_update_status_report');
// $this->controller_url='report/profile_update_status/Profile_update_status_report';
//$this->load->model("report/Profile_update_status_report_model");
$this->lang->load('report_lang');
}
示例9: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('approval/Entrepreneur_approval');
$this->controller_url = 'approval/Entrepreneur_approval';
$this->load->model("approval/Entrepreneur_approval_model");
$this->lang->load('website_lang');
}
示例10: __construct
function __construct()
{
//
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('media/media_upload');
$this->controller_url = 'media/media_upload';
$this->load->model("media/media_upload_model");
//$this->lang->load("notice_management", $this->get_language());
}
示例11: __construct
function __construct()
{
//
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('esheba_management/Esheba_including');
$this->controller_url = 'esheba_management/Esheba_including';
$this->load->model("esheba_management/Esheba_including_model");
$this->lang->load("esheba_management", $this->get_language());
}
示例12: __construct
function __construct()
{
parent::__construct();
$this->message = '';
$this->permissions = Menu_helper::get_permission('system_setup/system_keyword');
$this->controller_url = 'system_setup/system_keyword';
$this->load->model("system_setup/system_keyword_model");
$this->config->load('key_config');
$this->permissions['view'] = '';
$this->permissions['delete'] = '';
}
示例13: __construct
function __construct()
{
parent::__construct();
//TODO
//check security and loged user
$this->message = '';
$this->permissions = Menu_helper::get_permission('report/performance/performance_report');
$this->lang->load("report", $this->config->item('GET_LANGUAGE'));
$this->lang->load("my", $this->config->item('GET_LANGUAGE'));
$this->load->model("report/performance_report_model");
}