本文整理汇总了PHP中Booking::getnumoldreservations方法的典型用法代码示例。如果您正苦于以下问题:PHP Booking::getnumoldreservations方法的具体用法?PHP Booking::getnumoldreservations怎么用?PHP Booking::getnumoldreservations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Booking
的用法示例。
在下文中一共展示了Booking::getnumoldreservations方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: BookingCategory
$book = New Booking;
$guestlist = New Guestlist;
*/
include_once 'calendarclass.inc.php';
include_once 'bookingcategoryclass.inc.php';
include_once 'bookingclass.inc.php';
include_once 'guestlistclass.inc.php';
$bcat = new BookingCategory();
$book = new Booking();
$guestlist = new Guestlist();
$cal = new Calendar();
$smarty->assign("tpl_title", "Zimmerplan");
$smarty->assign('tpl_nav', 'calendar');
$smarty->assign('tpl_type', 'calendar');
// check for old reservations
$numoldres = $book->getnumoldreservations();
if ($numoldres > 0 && $request->GetVar('showoldres', 'Session') !== 'noshow') {
$smarty->assign('tpl_oldreservations', 'true');
} else {
$smarty->assign('tpl_oldreservations', 'false');
}
$numbirthday = count($guestlist->getBirthdayReminders());
if ($numbirthday > 0 && $request->GetVar('showbirthdays', 'Session') !== 'noshow') {
$smarty->assign('tpl_birthdays', 'true');
} else {
$smarty->assign('tpl_birthdays', 'false');
}
$smarty->assign('tpl_numoldres', $numoldres);
$todaydate = getdate();
$month = $todaydate['mon'];
$year = $todaydate['year'];