本文整理汇总了PHP中Clients::extractor方法的典型用法代码示例。如果您正苦于以下问题:PHP Clients::extractor方法的具体用法?PHP Clients::extractor怎么用?PHP Clients::extractor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Clients
的用法示例。
在下文中一共展示了Clients::extractor方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: BookingClient
//$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") {
$bed_type = "Single Bed";
示例2: viewTable
function viewTable($data, $count)
{
$clients = new Clients();
$paginations = new Paginations();
$paginations->setLimit(10);
$paginations->setPage($_REQUEST['page']);
$paginations->setJSCallback("viewClients");
$paginations->setTotalPages($count);
$paginations->makePagination();
?>
<div class="mws-panel-header">
<span class="mws-i-24 i-table-1">View Client</span>
</div>
<div class="mws-panel-body">
<table cellpadding="0" cellspacing="0" border="0" class="mws-datatable-fn mws-table">
<thead>
<tr>
<th>Client Name</th>
<th>Client Address</th>
<th>Client Email</th>
</tr>
</thead>
<tbody>
<?php
if (count($data) > 0) {
?>
<?php
for ($i = 0; $i < count($data); $i++) {
$clients->extractor($data, $i);
?>
<tr id="row_<?php
echo $clients->clientId();
?>
">
<td><?php
echo $clients->clientFirstName() . ' ' . $clients->clientLastName();
?>
</td>
<td><?php
echo $clients->clientAddress();
?>
</td>
<td><?php
echo $clients->clientEmail();
?>
</td>
</tr>
<?php
}
?>
<?php
}
?>
</tbody>
</table>
<?php
$paginations->drawPagination();
}
示例3: viewTable
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();
}