当前位置: 首页>>代码示例>>PHP>>正文


PHP Schedule::GetTimezone方法代码示例

本文整理汇总了PHP中Schedule::GetTimezone方法的典型用法代码示例。如果您正苦于以下问题:PHP Schedule::GetTimezone方法的具体用法?PHP Schedule::GetTimezone怎么用?PHP Schedule::GetTimezone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Schedule的用法示例。


在下文中一共展示了Schedule::GetTimezone方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct(IRestServer $server, Schedule $schedule)
 {
     $this->daysVisible = $schedule->GetDaysVisible();
     $this->id = $schedule->GetId();
     $this->isDefault = $schedule->GetIsDefault();
     $this->name = $schedule->GetName();
     $this->timezone = $schedule->GetTimezone();
     $this->weekdayStart = $schedule->GetWeekdayStart();
     $this->AddService($server, WebServices::GetSchedule, array(WebServiceParams::ScheduleId => $schedule->GetId()));
 }
开发者ID:Trideon,项目名称:gigolo,代码行数:10,代码来源:ScheduleItemResponse.php

示例2: testWhenHourlyLimitIsExceededInYear

 public function testWhenHourlyLimitIsExceededInYear()
 {
     $duration = new QuotaDurationYear();
     $limit = new QuotaLimitHours(1.5);
     $startDate = Date::Parse('2011-04-03 0:30', $this->schedule->GetTimezone());
     $endDate = Date::Parse('2011-04-03 1:30', $this->schedule->GetTimezone());
     $series = $this->GetHourLongReservation($startDate, $endDate);
     $quota = new Quota(1, $duration, $limit, $series->ResourceId());
     $res1 = new ReservationItemView('ref1', $startDate->SetTimeString('00:00'), $endDate->SetTimeString('00:31'), '', $series->ResourceId(), 98712);
     $res1->ScheduleId = $series->ScheduleId();
     $reservations = array($res1);
     $this->SearchReturns($reservations);
     $exceeds = $quota->ExceedsQuota($series, $this->user, $this->schedule, $this->reservationViewRepository);
     $this->assertTrue($exceeds);
 }
开发者ID:utn-frm-si,项目名称:booked,代码行数:15,代码来源:QuotaTests.php

示例3: __construct

 public function __construct(IRestServer $server, Schedule $schedule, IScheduleLayout $layout)
 {
     $this->daysVisible = $schedule->GetDaysVisible();
     $this->id = $schedule->GetId();
     $this->isDefault = $schedule->GetIsDefault();
     $this->name = $schedule->GetName();
     $this->timezone = $schedule->GetTimezone();
     $this->weekdayStart = $schedule->GetWeekdayStart();
     if ($schedule->GetIsCalendarSubscriptionAllowed()) {
         $url = new CalendarSubscriptionUrl(null, $schedule->GetPublicId(), null);
         $this->icsUrl = $url->__toString();
     }
     $layoutDate = Date::Now()->ToTimezone($server->GetSession()->Timezone);
     for ($day = 0; $day < 7; $day++) {
         $periods = $layout->GetLayout($layoutDate);
         foreach ($periods as $period) {
             $this->periods[$layoutDate->Weekday()][] = new SchedulePeriodResponse($period);
         }
         $layoutDate = $layoutDate->AddDays(1);
     }
 }
开发者ID:Trideon,项目名称:gigolo,代码行数:21,代码来源:ScheduleResponse.php

示例4: GetDisplayTimezone

 public function GetDisplayTimezone(UserSession $user, Schedule $schedule)
 {
     return $schedule->GetTimezone();
 }
开发者ID:Trideon,项目名称:gigolo,代码行数:4,代码来源:ViewSchedulePage.php

示例5: ExceedsQuota

 /**
  * @param ReservationSeries $reservationSeries
  * @param User $user
  * @param Schedule $schedule
  * @param IReservationViewRepository $reservationViewRepository
  * @return bool
  */
 public function ExceedsQuota($reservationSeries, $user, $schedule, IReservationViewRepository $reservationViewRepository)
 {
     $timezone = $schedule->GetTimezone();
     if (!is_null($this->resourceId)) {
         $appliesToResource = false;
         foreach ($reservationSeries->AllResourceIds() as $resourceId) {
             if (!$appliesToResource && $this->AppliesToResource($resourceId)) {
                 $appliesToResource = true;
             }
         }
         if (!$appliesToResource) {
             return false;
         }
     }
     if (!is_null($this->groupId)) {
         $appliesToGroup = false;
         foreach ($user->Groups() as $group) {
             if (!$appliesToGroup && $this->AppliesToGroup($group->GroupId)) {
                 $appliesToGroup = true;
             }
         }
         if (!$appliesToGroup) {
             return false;
         }
     }
     if (!$this->AppliesToSchedule($reservationSeries->ScheduleId())) {
         return false;
     }
     if (count($reservationSeries->Instances()) == 0) {
         return false;
     }
     $dates = $this->duration->GetSearchDates($reservationSeries, $timezone);
     $reservationsWithinRange = $reservationViewRepository->GetReservationList($dates->Start(), $dates->End(), $reservationSeries->UserId(), ReservationUserLevel::OWNER);
     try {
         $this->CheckAll($reservationsWithinRange, $reservationSeries, $timezone);
     } catch (QuotaExceededException $ex) {
         return true;
     }
     return false;
 }
开发者ID:utn-frm-si,项目名称:booked,代码行数:47,代码来源:Quota.php

示例6: GetLayout

 /**
  * @param Schedule $schedule
  * @return IScheduleLayout
  */
 public function GetLayout($schedule)
 {
     return $this->scheduleRepository->GetLayout($schedule->GetId(), new ScheduleLayoutFactory($schedule->GetTimezone()));
 }
开发者ID:hugutux,项目名称:booked,代码行数:8,代码来源:ManageSchedulesPresenter.php


注:本文中的Schedule::GetTimezone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。