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


PHP Schedule::getDateStop方法代碼示例

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


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

示例1: addBlock

 /** 
  * @brief	Ajoute un blocage à la base de données
  * @param 	Schedule	$block		Bloquage à enregistrer dans la base de données
  * @return	Error		Retourne une information avec le message de succès
  */
 public function addBlock($block)
 {
     $req = $this->bdd->prepare('INSERT INTO block_schedule (id_doctor, date_start, date_stop, note, recursion) VALUES (:idDoctor , :dstart, :dstop, :note, :recursion) ');
     $req->bindValue(':dstart', $block->getDateStart(), PDO::PARAM_STR);
     $req->bindValue(':dstop', $block->getDateStop(), PDO::PARAM_STR);
     $req->bindValue(':note', $block->getNote(), PDO::PARAM_STR);
     $req->bindValue(':idDoctor', $block->getIdDoctor(), PDO::PARAM_INT);
     $req->bindValue(':recursion', $block->getRecursion(), PDO::PARAM_INT);
     $req->execute();
     return new Error("Le blocage a été ajouté", "info");
 }
開發者ID:AymericFrey,項目名稱:ProjetBooking,代碼行數:16,代碼來源:SchedulesManager.class.php

示例2: Schedule

     if (get_class($previous) != "Schedule") {
         // pas trouvé de départ bloqué. On prend l'heure de démarrage de la journée
         $previous = new Schedule();
         $temp = intval(date('i', $dayStartHour));
         $previous->setDateStart($dayStartHour - $temp * 60);
         $previous->setDateStop($dayStartHour);
     }
     //$rdv[] = $previous;
 }
 $result = "";
 $hourWidth = 800 / $nbrBlocks;
 //pixel - border * 2
 $baseCalcul = $hourWidth / ($duration * 60);
 /** Au choix ici, on peut choisir de conserver l'organisation générale des créneaux ou s'adapter par rapport au dernier pris **/
 //$dateStart = $dayStartHour + floor(($dateStart - $dayStartHour) / ($doctor->getRdvDuration() * 60)) * ($doctor->getRdvDuration() * 60);
 $dateStart = $previous->getDateStop() + floor(($dateStart - $previous->getDateStop()) / ($doctor->getRdvDuration() * 60)) * ($doctor->getRdvDuration() * 60);
 for ($i = 0; $i < $nbrBlocks; $i++) {
     if ($dateStart + $i * $duration * 60 + $duration * 60 <= $dayStartHour or $dateStart + $i * $duration * 60 + $duration * 60 > $dayEndHour) {
         continue;
     }
     $cur = $dateStart + $i * $duration * 60;
     //timestamp gauche du block courant
     $hour = date("H:i", $cur);
     //visuel uniquement
     $class = "selection-part-content-free";
     $result .= "<div class='selection-part' style='width: " . $hourWidth . "px'>\n\t\t\t\t\t\t<div class='selection-part-hour'>" . $hour . "</div>\n\t\t\t\t\t\t<div class='selection-part-content " . $class . "' data-calendar-selection-date='" . date("Y-m-d", $cur) . "'>";
     foreach ($rdv as $sched) {
         $left = 0;
         $width = 0;
         if ($sched->getDateStart() >= $cur and $sched->getDateStart() <= $cur + $duration * 60) {
             //le start est dans l'heure
開發者ID:AymericFrey,項目名稱:ProjetBooking,代碼行數:31,代碼來源:selection-calendar.php


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