本文整理汇总了PHP中Rights::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Rights::init方法的具体用法?PHP Rights::init怎么用?PHP Rights::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Rights
的用法示例。
在下文中一共展示了Rights::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Cache
header('Cache-Control: no-cache, must-revalidate');
require_once 'framework/functions/basic.inc.php';
initialize_paths();
require_once 'framework/inc/constants.inc.php';
load('config/config');
load('functions/useful', INC_LOAD);
load('inc/default', INC_LOAD);
load('core/cache');
load('core/errors');
load('core/breadcrumb');
load('core/sessions');
load('builder/form');
load('templates/constructor');
load('lang/lang');
load('db/mysql');
load('members/member');
@(require_once ROOT . 'install/install_delete_dir.php');
$cache = new Cache(false, false);
$bdd = new Bdd();
$sessions = new Sessions();
$member = new Member();
$config = new Config($cache, $member->getDesign(), $member->getLang());
$authorizations = new Rights();
$authorizations->init();
$rights = new Member_rights($member->getId());
$rights->init($config->getInfos('module'), $config->getInfos('page'));
$lang = new Lang('accueil', 'index', $member->getLang());
$breadcrumb = new Breadcrumb();
$tpl = new TemplatesConstructor();
$tpl->init($config);
autoload_libs();