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


PHP PhabricatorUser::getTimezoneIdentifier方法代碼示例

本文整理匯總了PHP中PhabricatorUser::getTimezoneIdentifier方法的典型用法代碼示例。如果您正苦於以下問題:PHP PhabricatorUser::getTimezoneIdentifier方法的具體用法?PHP PhabricatorUser::getTimezoneIdentifier怎麽用?PHP PhabricatorUser::getTimezoneIdentifier使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PhabricatorUser的用法示例。


在下文中一共展示了PhabricatorUser::getTimezoneIdentifier方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: parseLocalTime

 public static function parseLocalTime($time, PhabricatorUser $user)
 {
     $old_zone = date_default_timezone_get();
     date_default_timezone_set($user->getTimezoneIdentifier());
     $timestamp = (int) strtotime($time, self::getNow());
     if ($timestamp <= 0) {
         $timestamp = null;
     }
     date_default_timezone_set($old_zone);
     return $timestamp;
 }
開發者ID:pugong,項目名稱:phabricator,代碼行數:11,代碼來源:PhabricatorTime.php

示例2: getStartDateTimeObjects

 private static function getStartDateTimeObjects(PhabricatorUser $user, $start_day_str)
 {
     $timezone = new DateTimeZone($user->getTimezoneIdentifier());
     $today_epoch = PhabricatorTime::parseLocalTime('today', $user);
     $today = new DateTime('@' . $today_epoch);
     $today->setTimeZone($timezone);
     if (strtolower($start_day_str) == 'today' || $today->format('l') == $start_day_str) {
         $start_day = clone $today;
     } else {
         $start_epoch = PhabricatorTime::parseLocalTime('last ' . $start_day_str, $user);
         $start_day = new DateTime('@' . $start_epoch);
         $start_day->setTimeZone($timezone);
     }
     return array('today' => $today, 'start_day' => $start_day);
 }
開發者ID:fengshao0907,項目名稱:phabricator,代碼行數:15,代碼來源:CalendarTimeUtil.php

示例3: applyViewerTimezone

 public function applyViewerTimezone(PhabricatorUser $viewer)
 {
     $this->viewerTimezone = $viewer->getTimezoneIdentifier();
     return $this;
 }
開發者ID:NeoArmageddon,項目名稱:phabricator,代碼行數:5,代碼來源:PhabricatorCalendarEvent.php

示例4: updateEventFromNode

 private function updateEventFromNode(PhabricatorUser $actor, PhabricatorCalendarEvent $event, PhutilCalendarEventNode $node)
 {
     $instance_epoch = $this->getNodeInstanceEpoch($node);
     $event->setUTCInstanceEpoch($instance_epoch);
     $timezone = $actor->getTimezoneIdentifier();
     // TODO: These should be transactional, but the transaction only accepts
     // epoch timestamps right now.
     $start_datetime = $node->getStartDateTime()->setViewerTimezone($timezone);
     $end_datetime = $node->getEndDateTime()->setViewerTimezone($timezone);
     $event->setStartDateTime($start_datetime)->setEndDateTime($end_datetime);
     $event->setIsAllDay((int) $start_datetime->getIsAllDay());
     // TODO: This should be transactional, but the transaction only accepts
     // simple frequency rules right now.
     $rrule = $node->getRecurrenceRule();
     if ($rrule) {
         $event->setRecurrenceRule($rrule);
         $until_datetime = $rrule->getUntil();
         if ($until_datetime) {
             $until_datetime->setViewerTimezone($timezone);
             $event->setUntilDateTime($until_datetime);
         }
         $count = $rrule->getCount();
         $event->setParameter('recurrenceCount', $count);
     }
     return $event;
 }
開發者ID:NeoArmageddon,項目名稱:phabricator,代碼行數:26,代碼來源:PhabricatorCalendarImportEngine.php


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