本文整理匯總了PHP中TiendaSelect::categorylayout方法的典型用法代碼示例。如果您正苦於以下問題:PHP TiendaSelect::categorylayout方法的具體用法?PHP TiendaSelect::categorylayout怎麽用?PHP TiendaSelect::categorylayout使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TiendaSelect
的用法示例。
在下文中一共展示了TiendaSelect::categorylayout方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
</label>
</td>
<td>
<input name="category_full_image_new" type="file" size="40" />
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 100px; text-align: right;" class="key">
<?php
echo JText::_('COM_TIENDA_CATEGORY_LAYOUT_FILE');
?>
:
</td>
<td>
<?php
echo TiendaSelect::categorylayout(@$row->category_layout, 'category_layout');
?>
<div class="well note">
<?php
echo JText::_('COM_TIENDA_CATEGORY_LAYOUT_FILE_DESC');
?>
</div>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 100px; text-align: right;" class="key">
<?php
echo JText::_('COM_TIENDA_CATEGORY_PRODUCTS_LAYOUT_FILE');
?>
:
</td>
示例2: defined
defined('_JEXEC') or die('Restricted access');
$row = @$this->row;
?>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<th class="dsc-key">
<?php
echo JText::_('COM_TIENDA_DEFAULT_CATEGORY_LAYOUT');
?>
</th>
<td>
<?php
echo TiendaSelect::categorylayout($this->row->get('default_category_layout'), 'default_category_layout');
?>
</td>
<td>
</td>
</tr>
<tr>
<th class="dsc-key">
<?php
echo JText::_('COM_TIENDA_DEFAULT_PRODUCT_DETAIL_LAYOUT');
?>
</th>
<td>
<?php
echo TiendaSelect::productlayout($this->row->get('default_product_layout'), 'default_product_layout');