本文整理汇总了PHP中CitruscartSelect::shippingtype方法的典型用法代码示例。如果您正苦于以下问题:PHP CitruscartSelect::shippingtype方法的具体用法?PHP CitruscartSelect::shippingtype怎么用?PHP CitruscartSelect::shippingtype使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CitruscartSelect
的用法示例。
在下文中一共展示了CitruscartSelect::shippingtype方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
echo CitruscartSelect::btbooleanlist('shipping_method_enabled', '', $row->shipping_method_enabled);
?>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<label for="shipping_method_type">
<?php
echo JText::_('COM_CITRUSCART_TYPE');
?>
:
</label>
</td>
<td>
<?php
echo CitruscartSelect::shippingtype($row->shipping_method_type, 'shipping_method_type', '', 'shipping_method_type', false);
?>
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<label for="subtotal_minimum">
<?php
echo JText::_('COM_CITRUSCART_MINIMUM_SUBTOTAL_REQUIRED');
?>
:
</label>
</td>
<td>
<input type="text" name="subtotal_minimum" id="subtotal_minimum" value="<?php
echo $row->subtotal_minimum;
示例2:
echo JText::_('COM_CITRUSCART_TO');
?>
" id="filter_id_to" name="filter_id_to" value="<?php
echo $state->filter_id_to;
?>
" size="5" class="input input-tiny" />
</div>
</div>
</th>
<th style="text-align: left;">
<input id="filter_name" name="filter_name" value="<?php
//echo $state->filter_name;
?>
" size="15"/>
<?php
echo CitruscartSelect::shippingtype($state->filter_shippingtype, 'filter_shippingtype', $attribs, 'shippingtype', true);
?>
</th>
<th>
<?php
echo CitruscartSelect::taxclass($state->filter_taxclass, 'filter_taxclass', $attribs, 'taxclass', true, false);
?>
</th>
<th>
<?php
echo CitruscartSelect::booleans($state->filter_enabled, 'filter_enabled', $attribs, 'enabled', true, 'COM_CITRUSCART_ENABLED_STATE');
?>
</th>
</tr>
<tr>
<th colspan="20" style="font-weight: normal;">
示例3: defined
# @license GNU/GPL Based on Tienda by Dioscouri Design http://www.dioscouri.com.
-------------------------------------------------------------------------*/
/** ensure this file is being included by a parent file */
defined('_JEXEC') or die('Restricted access');
$row = @$this->row;
?>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<th style="width: 25%;"><?php
echo JText::_('COM_CITRUSCART_DEFAULT_SHIPPING_METHOD');
?>
</th>
<td><?php
echo CitruscartSelect::shippingtype($this->row->get('defaultShippingMethod', '2'), 'defaultShippingMethod');
?>
</td>
<td></td>
</tr>
<tr>
<th style="width: 25%;"><?php
echo JText::_('COM_CITRUSCART_GLOBAL_HANDLING_COST');
?>
</th>
<td><input type="text" name="global_handling" value="<?php
echo $this->row->get('global_handling', '');
?>
" class="inputbox" size="10" />
</td>
<td><?php