當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tinebase_Core::setupUserTimezone方法代碼示例

本文整理匯總了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();
 }
開發者ID:,項目名稱:,代碼行數:18,代碼來源:

示例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;
 }
開發者ID:,項目名稱:,代碼行數:12,代碼來源:

示例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);
 }
開發者ID:hernot,項目名稱:Tine-2.0-Open-Source-Groupware-and-CRM,代碼行數:19,代碼來源:Controller.php

示例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);
 }
開發者ID:hernot,項目名稱:Tine-2.0-Open-Source-Groupware-and-CRM,代碼行數:12,代碼來源:Core.php

示例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/');
 }
開發者ID:,項目名稱:,代碼行數:28,代碼來源:

示例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();
     }
 }
開發者ID:,項目名稱:,代碼行數:26,代碼來源:


注:本文中的Tinebase_Core::setupUserTimezone方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。