本文整理汇总了PHP中Menu_helper类的典型用法代码示例。如果您正苦于以下问题:PHP Menu_helper类的具体用法?PHP Menu_helper怎么用?PHP Menu_helper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Menu_helper类的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());
}
开发者ID:saj696,项目名称:dcms_new,代码行数:7,代码来源:Upload_income_report_list.php
示例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");
}
开发者ID:marajmmc,项目名称:asset,代码行数:8,代码来源:Find_suggestion.php
示例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");
}
开发者ID:saj696,项目名称:dcms_new,代码行数:8,代码来源:External_service.php
示例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");
}
开发者ID:jibonbikash,项目名称:mmc,代码行数:9,代码来源:Registered_union_list.php
示例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());
}
开发者ID:saj696,项目名称:dcms_new,代码行数:9,代码来源:User_profile_update.php
示例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");
}
开发者ID:saj696,项目名称:dcms_new,代码行数:9,代码来源:Uisc_invested_money_list.php
示例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'] = '';
}
开发者ID:jibonbikash,项目名称:mmc,代码行数:9,代码来源:Question_create.php
示例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');
}
开发者ID:saj696,项目名称:dcms_new,代码行数:9,代码来源:Profile_update_status_report.php
示例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');
}
开发者ID:saj696,项目名称:dcms_new,代码行数:9,代码来源:Entrepreneur_approval.php
示例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());
}
开发者ID:saj696,项目名称:dcms_new,代码行数:10,代码来源:Media_upload.php
示例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());
}
开发者ID:jibonbikash,项目名称:mmc,代码行数:10,代码来源:Esheba_including.php
示例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'] = '';
}
开发者ID:mazba,项目名称:ams,代码行数:11,代码来源:Desk_keyword.php
示例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");
}
开发者ID:saj696,项目名称:dcms_new,代码行数:11,代码来源:Performance_report.php
注:本文中的Menu_helper类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论