本文整理汇总了PHP中TiendaSelect::shippingtype方法的典型用法代码示例。如果您正苦于以下问题:PHP TiendaSelect::shippingtype方法的具体用法?PHP TiendaSelect::shippingtype怎么用?PHP TiendaSelect::shippingtype使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TiendaSelect
的用法示例。
在下文中一共展示了TiendaSelect::shippingtype方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<td><?php
echo TiendaSelect::orderstate($this->row->get('pending_order_state', '1'), 'pending_order_state');
?>
</td>
<td><?php
echo JText::_('COM_TIENDA_PENDING_ORDER_STATE_DESC');
?>
</td>
</tr>
<tr>
<th style="width: 25%;"><?php
echo JText::_('COM_TIENDA_DEFAULT_SHIPPING_METHOD');
?>
</th>
<td><?php
echo TiendaSelect::shippingtype($this->row->get('defaultShippingMethod', '2'), 'defaultShippingMethod');
?>
</td>
<td></td>
</tr>
<tr>
<th style="width: 25%;"><?php
echo JText::_('COM_TIENDA_ENABLE_GUEST_CHECKOUT');
?>
</th>
<td><?php
echo TiendaSelect::btbooleanlist('guest_checkout_enabled', 'class="inputbox"', $this->row->get('guest_checkout_enabled', '1'));
?>
</td>
<td></td>
</tr>
示例2:
echo JText::_('COM_TIENDA_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 TiendaSelect::shippingtype(@$state->filter_shippingtype, 'filter_shippingtype', $attribs, 'shippingtype', true);
?>
</th>
<th>
<?php
echo TiendaSelect::taxclass(@$state->filter_taxclass, 'filter_taxclass', $attribs, 'taxclass', true, false);
?>
</th>
<th>
<?php
echo TiendaSelect::booleans(@$state->filter_enabled, 'filter_enabled', $attribs, 'enabled', true, 'COM_TIENDA_ENABLED_STATE');
?>
</th>
</tr>
<tr>
<th colspan="20" style="font-weight: normal;">
示例3:
echo TiendaSelect::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_TIENDA_TYPE');
?>
:
</label>
</td>
<td>
<?php
echo TiendaSelect::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_TIENDA_MINIMUM_SUBTOTAL_REQUIRED');
?>
:
</label>
</td>
<td>
<input type="text" name="subtotal_minimum" id="subtotal_minimum" value="<?php
echo @$row->subtotal_minimum;