本文整理汇总了PHP中shopFunctions::renderMetaEdit方法的典型用法代码示例。如果您正苦于以下问题:PHP shopFunctions::renderMetaEdit方法的具体用法?PHP shopFunctions::renderMetaEdit怎么用?PHP shopFunctions::renderMetaEdit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shopFunctions
的用法示例。
在下文中一共展示了shopFunctions::renderMetaEdit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<?php
echo VmHTML::row('select', 'COM_VIRTUEMART_CATEGORY_FORM_FLYPAGE', 'category_product_layout', $this->productLayouts, $this->category->category_product_layout, '', 'value', 'text', false);
?>
</table>
</fieldset>
</td>
<td valign="top" style="width: 50%;">
<fieldset>
<legend><?php
echo vmText::_('COM_VIRTUEMART_METAINFO');
?>
</legend>
<?php
echo shopFunctions::renderMetaEdit($this->category);
?>
</fieldset>
</td>
</tr>
<tr>
<?php
if ($this->showVendors()) {
echo VmHTML::row('raw', 'COM_VIRTUEMART_VENDOR', $this->vendorList);
}
?>
</tr>
</table>
示例2: array
<legend><?php
echo JText::_('COM_VIRTUEMART_PRODUCT_FORM_S_DESC');
?>
</legend>
<textarea class="inputbox span12" name="product_s_desc" id="product_s_desc" cols="65" rows="3" ><?php
echo $this->product->product_s_desc;
?>
</textarea>
</fieldset>
<fieldset>
<legend><?php
echo JText::_('COM_VIRTUEMART_PRODUCT_FORM_DESCRIPTION');
?>
</legend>
<?php
echo $this->editor->display('product_desc', $this->product->product_desc, '100%;', '550', '75', '20', array('pagebreak', 'readmore'));
?>
</fieldset>
<fieldset>
<legend><?php
echo JText::_('COM_VIRTUEMART_METAINFO');
?>
</legend>
<?php
echo shopFunctions::renderMetaEdit($this->product);
?>
</fieldset>
示例3:
<legend>
<?php
echo vmText::_('COM_VIRTUEMART_STORE_FORM_LEGAL');
?>
</legend>
<?php
echo $this->editor->display('vendor_legal_info', $this->vendor->vendor_legal_info, '100%', 100, 70, 15);
?>
</fieldset>
<fieldset>
<legend><?php
echo vmText::_('COM_VIRTUEMART_METAINFO');
?>
</legend>
<?php
echo shopFunctions::renderMetaEdit($this->vendor);
?>
</fieldset>
</div>
<input type="hidden" name="user_is_vendor" value="1" />
<input type="hidden" name="virtuemart_vendor_id" value="<?php
echo $this->vendor->virtuemart_vendor_id;
?>
" />
<input type="hidden" name="last_task" value="<?php
echo vRequest::getCmd('task');
?>
" />