本文整理汇总了PHP中Tinebase_Core::setupUserTimezone方法的典型用法代码示例。如果您正苦于以下问题:PHP Tinebase_Core::setupUserTimezone方法的具体用法?PHP Tinebase_Core::setupUserTimezone怎么用?PHP Tinebase_Core::setupUserTimezone使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tinebase_Core
的用法示例。
在下文中一共展示了Tinebase_Core::setupUserTimezone方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _initFramework
/**
* init tine framework
*/
protected function _initFramework()
{
$this->_setupCliConfig();
Tinebase_Core::setupTempDir();
Tinebase_Core::setupServerTimezone();
Tinebase_Core::setupLogger();
Tinebase_Core::setupStreamWrapper();
Tinebase_Core::setupSession();
Tinebase_Core::set(Tinebase_Core::LOCALE, new Zend_Locale('en_US'));
Tinebase_Core::set(Tinebase_Core::USERTIMEZONE, 'UTC');
Tinebase_Core::setupDatabaseConnection();
Tinebase_Core::setupCache();
Tinebase_Core::setupUserTimezone();
Tinebase_Core::setupUserLocale();
}
示例2: setTimezone
/**
* sets timezone
*
* @param string $timezoneString
* @param bool $saveaspreference
* @return string
*/
public function setTimezone($timezoneString, $saveaspreference)
{
$timezone = Tinebase_Core::setupUserTimezone($timezoneString, $saveaspreference);
return $timezone;
}
示例3: initUser
/**
* initialize user (session, locale, tz)
*
* @param Tinebase_Model_FullUser $_user
* @param boolean $fixCookieHeader
*/
public function initUser(Tinebase_Model_FullUser $_user, $fixCookieHeader = true)
{
Tinebase_Core::set(Tinebase_Core::USER, $_user);
if (Tinebase_Session_Abstract::getSessionEnabled()) {
$this->_initUserSession($fixCookieHeader);
}
// need to set locale again and because locale might not be set correctly during loginFromPost
// use 'auto' setting because it is fetched from cookie or preference then
Tinebase_Core::setupUserLocale('auto');
// need to set userTimeZone again
$userTimezone = Tinebase_Core::getPreference()->getValue(Tinebase_Preference::TIMEZONE);
Tinebase_Core::setupUserTimezone($userTimezone);
}
示例4: getUserTimezone
/**
* get current users timezone
*
* @return string the current users timezone string
*/
public static function getUserTimezone()
{
if (!self::isRegistered(self::USERTIMEZONE) || self::get(self::USERTIMEZONE) == NULL) {
return Tinebase_Core::setupUserTimezone();
}
return self::get(self::USERTIMEZONE);
}
示例5: initFramework
/**
* init tine framework
*/
public static function initFramework()
{
Tinebase_Core::setupConfig();
// Server Timezone must be setup before logger, as logger has timehandling!
Tinebase_Core::setupServerTimezone();
Tinebase_Core::setupLogger();
// Database Connection must be setup before cache because setupCache uses constant "SQL_TABLE_PREFIX"
Tinebase_Core::setupDatabaseConnection();
Tinebase_Core::setupTempDir();
Tinebase_Core::setupStreamWrapper();
//Cache must be setup before User Locale because otherwise Zend_Locale tries to setup
//its own cache handler which might result in a open_basedir restriction depending on the php.ini settings
Tinebase_Core::setupCache();
Tinebase_Core::setupSession();
// setup a temporary user locale/timezone. This will be overwritten later but we
// need to handle exceptions during initialisation process such as session timeout
// @todo add fallback locale to config file
Tinebase_Core::set('locale', new Zend_Locale('en_US'));
Tinebase_Core::set('userTimeZone', 'UTC');
// Tinebase_Core::setupMailer();
Tinebase_Core::setupUserCredentialCache();
Tinebase_Core::setupUserTimezone();
Tinebase_Core::setupUserLocale();
header('X-API: http://www.tine20.org/apidocs/tine20/');
}
示例6: _initUser
/**
* init user session
*
* @param Tinebase_Model_FullUser $_user
* @param Tinebase_Model_AccessLog $_accessLog
* @param string $_password
*/
protected function _initUser(Tinebase_Model_FullUser $_user, Tinebase_Model_AccessLog $_accessLog, $_password)
{
if ($_accessLog->result === Tinebase_Auth::SUCCESS && $_user->accountStatus === Tinebase_User::STATUS_ENABLED) {
$this->_initUserSession($_user);
Tinebase_Core::set(Tinebase_Core::USER, $_user);
$credentialCache = Tinebase_Auth_CredentialCache::getInstance()->cacheCredentials($_user->accountLoginName, $_password);
Tinebase_Core::set(Tinebase_Core::USERCREDENTIALCACHE, $credentialCache);
// need to set locale again and because locale might not be set correctly during loginFromPost
// use 'auto' setting because it is fetched from cookie or preference then
Tinebase_Core::setupUserLocale('auto');
// need to set userTimeZone again
$userTimezone = Tinebase_Core::getPreference()->getValue(Tinebase_Preference::TIMEZONE);
Tinebase_Core::setupUserTimezone($userTimezone);
$_user->setLoginTime($_accessLog->ip);
$_accessLog->sessionid = session_id();
$_accessLog->login_name = $_user->accountLoginName;
$_accessLog->account_id = $_user->getId();
}
}