當前位置: 首頁>>代碼示例>>PHP>>正文


PHP VmHTML::list_radio方法代碼示例

本文整理匯總了PHP中VmHTML::list_radio方法的典型用法代碼示例。如果您正苦於以下問題:PHP VmHTML::list_radio方法的具體用法?PHP VmHTML::list_radio怎麽用?PHP VmHTML::list_radio使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在VmHTML的用法示例。


在下文中一共展示了VmHTML::list_radio方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

                <div class="row-fluid">
                    <div class="span12">
                        <fieldset class="tour-border rooming">
                            <legend
                                class="tour-border"><?php 
echo JText::_('Roomming');
?>
</legend>
                            <div class="row-fluid">
                                <div class="span3">
                                    <span class="icon-notification " title=""></span>
                                </div>
                                <div class="span9">
                                    <?php 
echo VmHTML::list_radio('rooming', $this->rooming_select, 'share_room');
?>
                                </div>
                            </div>



                        </fieldset>

                    </div>
                </div>
                <div class="joint_group_note joint_group_note_1">
                    <div class="row-fluid">
                        <div class="span12">
                            <?php 
echo $this->lipsum->words(100);
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:30,代碼來源:default.php

示例2:



            <div class="col50">
                <div class="admintable row-fluid">
                    <div class="span12">
                        <div class="main-info">
                            <div class="row-fluid ">
                                <div class="span12">

                                    <div class="row-fluid">
                                        <div class="span4">
                                            Supplier type
                                        </div>
                                        <div class="span8">
                                            <?php 
echo VmHTML::list_radio('supplier_type', $this->list_supplier_type, $this->item->supplier_type);
?>
                                        </div>
                                    </div>
                                    <div class="row-fluid">
                                        <div class="span6">
                                            <?php 
echo VmHTML::row_control('input', 'supplier name', 'supplier_name', $this->item->supplier_name, 'class="required"');
?>
                                            <?php 
echo VmHTML::row_control('input', 'VAT detail', 'vat_detail', $this->item->vat_detail, '');
?>
                                            <?php 
echo VmHTML::row_control('input', 'language', 'language', $this->item->language, '');
?>
                                            <?php 
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:29,代碼來源:edit.php

示例3: allowance

            <div class="span4">
                <h3> Service name</h3>
            </div>
            <div class="span8">
                <?php 
echo VmHTML::input('excursion_addon_name', $this->item->excursion_addon_name, 'class="required" placeholder="excursion name" ');
?>
                <br/>
                <?php 
echo VmHTML::location_city('tsmart_cityarea_id', $this->list_cityarea, $this->item->tsmart_cityarea_id, '', 'tsmart_cityarea_id', 'full_city');
?>
                <h3>Edit term</h3>
                <div class="row-fluid">
                    <div class="span12">
                        <?php 
echo VmHTML::list_radio('excursion_payment_type', $this->list_excursion_payment_type, $this->item->excursion_payment_type);
?>

                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('select_from_to', 'Passenger allowance(Age to age)', 'passenger_age_from', 'passenger_age_to', $this->item->passenger_age_from, $this->item->passenger_age_to, 'class="required"');
?>
                    </div>
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('range_of_date', 'Valid date (Date to Date)', 'vail_from', 'vail_to', $this->item->vail_from, $this->item->vail_to);
?>
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:30,代碼來源:default_edit.php

示例4: allowance

?>
                <br/>
                <?php 
echo VmHTML::location_city('tsmart_cityarea_id', $this->list_cityarea, $this->item->tsmart_cityarea_id, '', 'tsmart_cityarea_id', 'full_city');
?>
                <h3>Edit term</h3>
                <div class="row-fluid">
                    <div class="span6">
                        <?php 
echo VmHTML::list_radio('transfer_type', $this->list_transfer_type, $this->item->transfer_type);
?>

                    </div>
                    <div class="span6">
                        <?php 
echo VmHTML::list_radio('transfer_payment_type', $this->list_transfer_payment_type, $this->item->transfer_payment_type);
?>

                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('select_from_to', 'Passenger allowance(Age to age)', 'passenger_age_from', 'passenger_age_to', $this->item->passenger_age_from, $this->item->passenger_age_to, 'class="required"');
?>
                    </div>
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('range_of_date', 'Valid date (Date to Date)', 'vail_from', 'vail_to', $this->item->vail_from, $this->item->vail_to);
?>
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:30,代碼來源:default_edit.php

示例5: allowance

echo VmHTML::input('location', $this->hotel->city_area_name, ' placeholder="location" readonly ');
?>



                <h3>Edit term</h3>
                <div class="row-fluid">
                    <div class="span6">
                        <?php 
echo VmHTML::list_radio('hotel_addon_type', $this->list_hotel_addon_type, $this->item->hotel_addon_type);
?>

                    </div>
                    <div class="span6">
                        <?php 
echo VmHTML::list_radio('hotel_payment_type', $this->list_hotel_payment_type, $this->item->hotel_payment_type);
?>

                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('select_from_to', 'Passenger allowance(Age to age)', 'passenger_age_from', 'passenger_age_to', $this->item->passenger_age_from, $this->item->passenger_age_to, 'class="required"');
?>
                    </div>
                    <div class="span6">
                        <?php 
echo VmHTML::row_control('range_of_date', 'Valid date (Date to Date)', 'vail_from', 'vail_to', $this->item->vail_from, $this->item->vail_to);
?>
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:30,代碼來源:default_edit.php

示例6:

                                <?php 
echo VmHTML::input('max_age', $this->product->max_age, 'class="required max_age"');
?>
                            </div>
                        </div>
                    </div>
                </div>


            </fieldset>
        </div>
        <div class="span4">
            <fieldset >
                <legend>Tour Section</legend>
                <?php 
echo VmHTML::list_radio('tsmart_tour_section_id', $this->list_tour_section, $this->product->tsmart_tour_section_id, '', 'tsmart_tour_section_id', 'tour_section_name', false, true, true, 2);
?>
            </fieldset>
            <fieldset class="list_tour_service_class">
                <legend>Service class</legend>
                <?php 
echo VmHTML::list_checkbox('list_tour_service_class_id', $this->list_tour_service_class, $this->product->list_tour_service_class_id, '', 'tsmart_service_class_id', 'service_class_name', false);
?>
            </fieldset>
        </div>
    </div>
    <div class="row-fluid ">
        <div class="span12">
            <div class="btn-toolbar" role="tablist">
                <div role="presentation" class="active btn-wrapper"><a class="btn" href="#activities" aria-controls="activities" role="tab" data-toggle="tab"><span class="icon-save"></span>activities</a></div>
                <div role="presentation" class="active btn-wrapper"><a  class="btn" href="#group_size" aria-controls="group_size" role="tab" data-toggle="tab"><span class="icon-save"></span>group size</a></div>
開發者ID:cuongnd,項目名稱:etravelservice,代碼行數:31,代碼來源:product_edit_information.php


注:本文中的VmHTML::list_radio方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。