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


PHP Reminder::getMinutuesPrior方法代码示例

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


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

示例1: getReservations

 function getReservations($userid, $start, $end)
 {
     $return = array();
     $values = array($userid, $userid);
     $query = 'SELECT r.*, rem.reminder_time, rem.reminderid, ru.* FROM ' . $this->get_table(TBL_RESERVATIONS) . ' r' . ' INNER JOIN ' . $this->get_table(TBL_RESERVATION_USERS) . ' ru ON r.resid = ru.resid' . ' LEFT JOIN ' . $this->get_table(TBL_REMINDERS) . ' rem ON r.resid = rem.resid AND rem.memberid = ?' . ' WHERE ru.memberid = ? AND ru.invited = 0';
     if ($start != null) {
         $values[] = $start->date;
         $values[] = $start->date;
         $values[] = $start->time;
         $query .= ' AND (r.start_date >= ? OR (r.start_date = ? AND r.starttime >= ?))';
     }
     if ($end != null) {
         $values[] = $end->date;
         $values[] = $end->date;
         $values[] = $end->time;
         $query .= ' AND (r.end_date <= ? OR (r.end_date = ? AND r.endtime <= ?))';
     }
     $result = $this->db->query($query, $values);
     $this->check_for_error($result);
     while ($rs = $result->fetchRow()) {
         $res = new ReservationResult();
         $res->id = $rs['resid'];
         $res->start_date = $rs['start_date'];
         $res->end_date = $rs['end_date'];
         $res->start = $rs['starttime'];
         $res->end = $rs['endtime'];
         $res->resource = new Resource($rs['machid']);
         $res->resource->db = null;
         $res->created = $rs['created'];
         $res->modified = $rs['modified'];
         $res->parentid = $rs['parentid'];
         $res->summary = $rs['summary'];
         $res->scheduleid = $rs['scheduleid'];
         $res->is_pending = $rs['is_pending'];
         $res->is_participant = $rs['owner'] == 0;
         $reminder = new Reminder($rs['reminderid']);
         $reminder->set_reminder_time($rs['reminder_time']);
         $res->reminderid = $rs['reminderid'];
         $res->reminder_minutes_prior = $reminder->getMinutuesPrior($res);
         $users = $this->get_res_users($res->id);
         for ($i = 0; $i < count($users); $i++) {
             if ($users[$i]['owner'] == 1) {
                 $res->user = new User($users[$i]['memberid']);
                 $res->user->db = null;
                 break;
             } else {
                 $res->users[] = $users[$i];
             }
         }
         $res->resources = $this->get_sup_resources($res->id);
         $return[] = $res;
     }
     $result->free();
     return $return;
 }
开发者ID:razagilani,项目名称:srrs,代码行数:55,代码来源:ReservationSearchDB1.class.php

示例2: Resource

 /**
  * Loads all reservation properties from the database
  * @param none
  */
 function load_by_id()
 {
     $res = $this->db->get_reservation($this->id, Auth::getCurrentID());
     // Get values from DB
     if (!$res) {
         // Quit if reservation doesnt exist
         CmnFns::do_error_box($this->db->get_err());
     }
     $this->start_date = $res['start_date'];
     $this->end_date = $res['end_date'];
     $this->start = $res['starttime'];
     $this->end = $res['endtime'];
     $this->resource = new Resource($res['machid']);
     $this->created = $res['created'];
     $this->modified = $res['modified'];
     $this->parentid = $res['parentid'];
     $this->summary = htmlspecialchars($res['summary']);
     $this->scheduleid = $res['scheduleid'];
     $this->is_blackout = $res['is_blackout'];
     $this->is_pending = $res['is_pending'];
     $this->allow_participation = $res['allow_participation'];
     $this->allow_anon_participation = $res['allow_anon_participation'];
     $this->is_participant = $res['participantid'] != null;
     $reminder = new Reminder($res['reminderid']);
     $reminder->set_reminder_time($res['reminder_time']);
     $this->reminderid = $res['reminderid'];
     $this->reminder_minutes_prior = $reminder->getMinutuesPrior($this);
     $this->users = $this->db->get_res_users($this->id);
     // Store the memberid of the owner
     for ($i = 0; $i < count($this->users); $i++) {
         if ($this->users[$i]['owner'] == 1) {
             $this->user = new User($this->users[$i]['memberid']);
         } else {
             if ($this->users[$i]['invited'] == 1) {
                 $this->invited_users[] = $this->users[$i];
             } else {
                 $this->participating_users[] = $this->users[$i];
             }
         }
     }
     $this->resources = $this->db->get_sup_resources($this->id);
 }
开发者ID:razagilani,项目名称:srrs,代码行数:46,代码来源:Reservation.class.php


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