当前位置: 首页>>代码示例>>PHP>>正文


PHP Clients::clientAddress方法代码示例

本文整理汇总了PHP中Clients::clientAddress方法的典型用法代码示例。如果您正苦于以下问题:PHP Clients::clientAddress方法的具体用法?PHP Clients::clientAddress怎么用?PHP Clients::clientAddress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Clients的用法示例。


在下文中一共展示了Clients::clientAddress方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: 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();
}
开发者ID:jcodesdotme,项目名称:pp,代码行数:61,代码来源:clients-controller.php

示例2: Clients

    $client_email = $client->email();
    $client_message = $client->message();
    $client_city = $client->city();
    $client_country = $client->country();
    $client_address = $client->address1() . " " . $client->address2();
} else {
    $client = new Clients();
    $client->setClientId($reservations->reservationClientId());
    $client->extractor($client->getClientFromId());
    $client_name = $client->clientFirstName() . " " . $client->clientLastName();
    $client_mobile = $client->clientPhoneMobile();
    $client_email = $client->clientEmail();
    $client_message = "";
    $client_city = $client->clientCity();
    $client_country = $client->clientCountry();
    $client_address = $client->clientAddress();
}
$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);
$country = new country();
$country->setCountryId($client_country);
$country->extractor($country->getCountryFromId());
$rooms->setRoomTypeId($reservations->reservationHotelRoomTypeId());
$rooms->extractor($rooms->getHotelRoomTypeFromId());
$hotel_name = $hotels->hotelName();
$hotel_url = $hotels->hotelSeoUrl();
$room_type = $rooms->roomTypeName();
开发者ID:jcodesdotme,项目名称:pp,代码行数:31,代码来源:voucher_template.php


注:本文中的Clients::clientAddress方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。