Beispiel #1
0
$merchantReferenceNo = $_REQUEST['resid'];
//$session->getMerchantReferenceNo();
$reservations->setReservationId($merchantReferenceNo);
$pay_data = $reservations->getReservationsFromId();
$reservations->extractor($pay_data);
$reservation_link_id = $reservations->reservationFromBookingLink();
$reservations_status = $reservations->reservationPaymentStatus();
if ($reservations->reservationFromBookingLink()) {
    $client = new BookingClient();
    $client->setId($reservations->reservationClientId());
    $client->extractor($client->getClientsFromId());
    $client_name = $client->name();
    $client_email = $client->email();
} else {
    $client = new Clients();
    $client->setClientId($reservations->reservationClientId());
    $client->extractor($client->getClientFromId());
    $client_name = $client->clientFirstName() . " " . $client->clientLastName();
    $client_email = $client->clientEmail();
}
$hotels->setHotelId($reservations->reservationHotelId());
$hotels->extractor($hotels->getHotelFromId());
$date = date("Y-m-d");
// current date
$new_date = strtotime(date("Y-m-d", strtotime($date)) . " +3 month");
$expire_date = date("Y-m-d", $new_date);
$rooms->setRoomTypeId($reservations->reservationHotelRoomTypeId());
$rooms->extractor($rooms->getHotelRoomTypeFromId());
$hotel_name = $hotels->hotelName();
$room_type = $rooms->roomTypeName();
if ($reservations->reservationBedType() == "sgl") {
Beispiel #2
0
function ExisEmailEdit()
{
    $clients = new Clients();
    $clients->setClientEmail($_REQUEST['client_email']);
    $clients->setClientId($_REQUEST['client_id']);
    $details = $clients->isUserNameExsistsEdit();
    echo $details;
}
function viewTable($data, $count)
{
    $reservation = new Reservations();
    $paginations = new Paginations();
    $paginations->setLimit(10);
    $paginations->setPage($_REQUEST['page']);
    $paginations->setJSCallback("viewReservations");
    $paginations->setTotalPages($count);
    $paginations->makePagination();
    ?>
        <div class="mws-panel-header">
            <span class="mws-i-24 i-table-1">View Reservations</span>
        </div>
        <div class="mws-panel-body">
            <table cellpadding="0" cellspacing="0" border="0" class="mws-datatable-fn mws-table">
                <colgroup>
                    <col class="con0"/>
                    <col class="con1"/>
                </colgroup>
                <thead>
                <tr>
                    <th class="head1">Hotel</th>
                    <th class="head0">Client</th>
                    <th class="head0">Room Rate</th>
                    <th class="head1">Total Price</th>
                </tr>
                </thead>
                <tbody>
                <?php 
    if (count($data) > 0) {
        ?>

                    <?php 
        for ($i = 0; $i < count($data); $i++) {
            $reservation->extractor($data, $i);
            $hotels = new Hotels();
            $hotels->setHotelId($reservation->reservationHotelId());
            $hotels->extractor($hotels->getHotelFromId());
            $clients = new Clients();
            $clients->setClientId($reservation->reservationClientId());
            $clients->extractor($clients->getClientFromId());
            ?>
                        <tr id="row_<?php 
            echo $reservation->reservationId();
            ?>
">
                            <td class="con1"><?php 
            echo $hotels->hotelName();
            ?>
</td>
                            <td class="con0"><?php 
            echo $clients->clientFirstName() . ' - ' . $clients->clientFirstName();
            ?>
</td>
                            <td class="con0"><?php 
            echo $reservation->reservationRoomRate();
            ?>
</td>
                            <td class="center"><?php 
            echo $reservation->reservationTotalPrice();
            ?>
</td>
                        </tr>
                    <?php 
        }
        ?>

                <?php 
    }
    ?>
                </tbody>
            </table>
        </div>
        <?php 
    $paginations->drawPagination();
}