0 && $j > 0 && isset ($tmp[$i]) && isset ($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) { $i--; $j--; } if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)) . "/main.inc.php")) { $res = @include substr($tmp, 0, ($i + 1)) . "/main.inc.php"; } if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php")) { $res = @include dirname(substr($tmp, 0, ($i + 1))) . "/main.inc.php"; } // Try main.inc.php using relative path if (!$res && file_exists("../main.inc.php")) { $res = @include "../main.inc.php"; } if (!$res && file_exists("../../main.inc.php")) { $res = @include "../../main.inc.php"; } if (!$res && file_exists("../../../main.inc.php")) { $res = @include "../../../main.inc.php"; } if (!$res) { die ("Include of main fails"); } $year = GETPOST('year', 'aZ09'); $month = GETPOST('month', 'aZ09'); $day = GETPOST('day', 'aZ09'); require_once DOL_DOCUMENT_ROOT . '/custom/booking/class/booking_agenda_helper.class.php'; $bookingAgendaHelper = new BookingAgendaHelper($db); $eventdayDates = $bookingAgendaHelper->getEventDayDates($year, $month, $day); $bookingAgendaHelper->showTable($eventdayDates, $selectedEvent); ?>