当前位置: 首页>>代码示例>>PHP>>正文


PHP Validate::checkPremission方法代码示例

本文整理汇总了PHP中Validate::checkPremission方法的典型用法代码示例。如果您正苦于以下问题:PHP Validate::checkPremission方法的具体用法?PHP Validate::checkPremission怎么用?PHP Validate::checkPremission使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Validate的用法示例。


在下文中一共展示了Validate::checkPremission方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('10', '警告,权限不足,您不能管理广告!');
global $_tpl;
$_adver = new AdverAction($_tpl);
//入口
$_adver->_action();
$_tpl->display('adver.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:adver.php

示例2: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('13', '警告,权限不足,您不能管理会员!');
global $_tpl;
$_user = new UserAction($_tpl);
//入口
$_user->_action();
$_tpl->display('user.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:user.php

示例3: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('4', '警告,权限不足,您不能管理等级!');
global $_tpl;
$_level = new LevelAction($_tpl);
//入口
$_level->_action();
$_tpl->display('level.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:level.php

示例4: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('7', '警告,权限不足,您不能发布文档!');
global $_tpl;
$_content = new ContentAction($_tpl);
//入口
$_content->_action();
$_tpl->display('content.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:content.php

示例5: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('6', '警告,权限不足,您不能管理导航!');
global $_tpl;
$_nav = new NavAction($_tpl);
//入口
$_nav->_action();
$_tpl->display('nav.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:nav.php

示例6: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('9', '警告,权限不足,您不能管理轮播器!');
global $_tpl;
$_rotatain = new RotatainAction($_tpl);
//入口
$_rotatain->_action();
$_tpl->display('rotatain.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:rotatain.php

示例7: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('8', '警告,权限不足,您不能管理评论!');
global $_tpl;
$_comment = new CommentAction($_tpl);
//入口
$_comment->_action();
$_tpl->display('comment.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:comment.php

示例8: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('11', '警告,权限不足,您不能管理投票!');
global $_tpl;
$_vote = new VoteAction($_tpl);
//入口
$_vote->_action();
$_tpl->display('vote.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:vote.php

示例9: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('14', '警告,权限不足,您不能管理系统配置!');
global $_tpl;
$_system = new SystemAction($_tpl);
//入口
$_system->_action();
$_tpl->display('system.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:system.php

示例10: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('5', '警告,权限不足,您不能权限设定!');
global $_tpl;
$_premission = new PremissionAction($_tpl);
//入口
$_premission->_action();
$_tpl->display('premission.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:premission.php

示例11: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('12', '警告,权限不足,您不能管理友情链接!');
global $_tpl;
$_link = new LinkAction($_tpl);
//入口
$_link->_action();
$_tpl->display('link.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:link.php

示例12: substr

<?php

require substr(dirname(__FILE__), 0, -6) . '/init.inc.php';
Validate::checkSession();
Validate::checkPremission('3', '警告,权限不足,您不能管理管理员!');
global $_tpl;
$_manage = new ManageAction($_tpl);
//入口
$_manage->_action();
$_tpl->display('manage.tpl');
开发者ID:denson7,项目名称:phpstudy,代码行数:10,代码来源:manage.php


注:本文中的Validate::checkPremission方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。