本文整理汇总了PHP中AppContext::init_current_user方法的典型用法代码示例。如果您正苦于以下问题:PHP AppContext::init_current_user方法的具体用法?PHP AppContext::init_current_user怎么用?PHP AppContext::init_current_user使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppContext
的用法示例。
在下文中一共展示了AppContext::init_current_user方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init_session
public static function init_session()
{
Session::gc();
$session_data = Session::start();
AppContext::set_session($session_data);
AppContext::init_current_user();
$current_user = AppContext::get_current_user();
$user_accounts_config = UserAccountsConfig::load();
$user_theme = ThemesManager::get_theme($current_user->get_theme());
$default_theme = $user_accounts_config->get_default_theme();
if ($user_theme === null || (!$user_theme->check_auth() || !$user_theme->is_activated()) && $user_theme->get_id() !== $default_theme) {
AppContext::get_current_user()->update_theme($default_theme);
}
$user_lang = LangsManager::get_lang($current_user->get_locale());
$default_lang = $user_accounts_config->get_default_lang();
if ($user_lang === null || (!$user_lang->check_auth() || !$user_lang->is_activated()) && $user_lang->get_id() !== $default_lang) {
AppContext::get_current_user()->update_lang($default_lang);
}
}
示例2: define
<?php
define('PATH_TO_ROOT', '..');
define('DEBUG', TRUE);
require_once PATH_TO_ROOT . '/kernel/framework/core/environment/Environment.class.php';
Environment::load_imports();
Environment::load_static_constants();
AppContext::set_request(new HTTPRequestCustom());
Session::gc();
$session_data = Session::start();
AppContext::set_session($session_data);
AppContext::init_current_user();
require_once PATH_TO_ROOT . '/test/PHPUnit/Framework.php';
if (isset($argv)) {
array_shift($argv);
$_REQUEST['params'] = implode(' ', $argv);
$_REQUEST['is_html'] = false;
}
if (!empty($_REQUEST['params'])) {
// Fake command line environment
$argv = $_REQUEST['params'];
$_SERVER['argv'] = explode(' ', '--configuration ./phpunit.cfg.xml ' . $argv);
} else {
$_SERVER['argv'] = array();
}
$is_html = isset($_REQUEST['is_html']) && $_REQUEST['is_html'] == true;
if (!$is_html) {
echo '<pre>';
}
//Debug::dump($_SERVER['argv']);
require_once PATH_TO_ROOT . '/test/phpunit.php';