本文整理汇总了PHP中VmHTML::row方法的典型用法代码示例。如果您正苦于以下问题:PHP VmHTML::row方法的具体用法?PHP VmHTML::row怎么用?PHP VmHTML::row使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VmHTML
的用法示例。
在下文中一共展示了VmHTML::row方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: plgVmOnProductEdit
function plgVmOnProductEdit($field, $product, &$row,&$retValue) {
if ($field->custom_element != $this->_name) return '';
$this->parseCustomParams($field);
$html ='
<fieldset>
<legend>'. JText::_('VMCUSTOM_DROP_BOX') .'</legend>
<table class="admintable">
'.VmHTML::row('input','VMCUSTOM_DROP_STRING_NAME','custom_param['.$row.'][custom_drop_name]',$field->custom_drop_name).'
'.VmHTML::row('input','VMCUSTOM_DROP_STRING','custom_param['.$row.'][custom_drop]',$field->custom_drop).'
</table>
</fieldset>';
$retValue .= $html;
return true ;
}
示例2: plgVmOnProductEdit
function plgVmOnProductEdit($field, $product_id, &$row,&$retValue) {
if ($field->custom_element != $this->_name) return '';
// $html .='<input type="text" value="'.$field->custom_size.'" size="10" name="custom_param['.$row.'][custom_size]">';
$this->parseCustomParams($field);
$html ='
<fieldset>
<legend>'. JText::_('VMCUSTOM_TEXTINPUT') .'</legend>
<table class="admintable">
'.VmHTML::row('input','VMCUSTOM_TEXTINPUT_SIZE','custom_param['.$row.'][custom_size]',$field->custom_size).'
</table>
</fieldset>';
$retValue .= $html;
$row++;
return true ;
}
示例3: plgVmOnDisplayEdit
function plgVmOnDisplayEdit(&$calc, &$html)
{
$html .= '<fieldset>
<legend>' . JText::_('VMCALCULATION_AVALARA') . '</legend>
<table class="admintable">';
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_ACTIVATED', 'activated', $calc->activated);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_COMPANY_CODE', 'company_code', $calc->company_code);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_ACCOUNT', 'account', $calc->account);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_LICENSE', 'license', $calc->license);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_COMMITT', 'committ', $calc->committ);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_ONLYCART', 'only_cart', $calc->only_cart);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_ACCRUAL', 'accrual', $calc->accrual);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_DEV', 'dev', $calc->dev);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_PREVCHECKOUT_AD_INVALID', 'prevCheckoutAddInv', $calc->prevCheckoutAddInv);
$label = 'VMCALCULATION_AVALARA_VADDRESS';
$lang = JFactory::getLanguage();
$label = $lang->hasKey($label . '_TIP') ? '<span class="hasTip" title="' . JText::_($label . '_TIP') . '">' . JText::_($label) . '</span>' : JText::_($label);
$html .= '
<tr>
<td class="key">
' . $label . '
</td>
<td>
' . shopfunctions::renderCountryList($calc->avatax_virtuemart_country_id, TRUE, array(), 'avatax_') . '
</td>';
/* $countriesList = ShopFunctions::renderCountryList($calc->calc_countries,True);
$this->assignRef('countriesList', $countriesList);
$statesList = ShopFunctions::renderStateList($calc->virtuemart_state_ids,'', True);
$this->assignRef('statesList', $statesList);
$label = 'VMCALCULATION_AVALARA_VADDRESS';
$lang =JFactory::getLanguage();
$label = $lang->hasKey($label.'_TIP') ? '<span class="hasTip" title="'.JText::_($label.'_TIP').'">'.JText::_($label).'</span>' : JText::_($label) ;
$html .= '
<td>
'.shopfunctions::renderStateList($calc->avatax_virtuemart_state_id,'avatax_',TRUE).'
</td> */
$html .= '</tr>';
//$html .= VmHTML::row('checkbox','VMCALCULATION_AVALARA_VADDRESS','vAddress',$calc->vAddress);
// $html .= VmHTML::row('checkbox','VMCALCULATION_ISTRAXX_AVALARA_TRACE','trace',$calc->trace);
$html .= '</table>';
if ($calc->activated) {
$html .= $this->ping($calc);
}
$html .= JText::_('VMCALCULATION_AVALARA_MANUAL') . '</fieldset>';
return TRUE;
}
示例4: plgVmOnDisplayEdit
function plgVmOnDisplayEdit(&$calc, &$html)
{
$html .= '<table>';
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_ACTIVATED', 'activated', $calc->activated);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_COMPANY_CODE', 'company_code', $calc->company_code);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_ACCOUNT', 'account', $calc->account);
$html .= VmHTML::row('input', 'VMCALCULATION_AVALARA_LICENSE', 'license', $calc->license);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_COMMITT', 'committ', $calc->committ);
$html .= VmHTML::row('checkbox', 'VMCALCULATION_AVALARA_VADDRESS', 'vAddress', $calc->vAddress);
// $html .= VmHTML::row('checkbox','VMCALCULATION_ISTRAXX_AVALARA_TRACE','trace',$calc->trace);
$html .= '</table></fieldset>';
if ($calc->activated) {
$html .= $this->ping($calc);
}
$html .= JText::_('VMCALCULATION_AVALARA_MANUAL');
return TRUE;
}
示例5: plgVmOnProductEdit
function plgVmOnProductEdit($field, $product_id, &$row, &$retValue)
{
if ($field->custom_element != $this->_name) {
return '';
}
//VmConfig::$echoDebug = true;
//vmdebug('plgVmOnProductEdit',$field);
$html = '
<fieldset>
<legend>' . vmText::_('VMCUSTOM_TEXTINPUT') . '</legend>
<table class="admintable">
' . VmHTML::row('input', 'VMCUSTOM_TEXTINPUT_SIZE', 'customfield_params[' . $row . '][custom_size]', $field->custom_size);
$options = array(0 => 'VMCUSTOM_TEXTINPUT_PRICE_BY_INPUT', 1 => 'VMCUSTOM_TEXTINPUT_PRICE_BY_LETTER');
$html .= VmHTML::row('select', 'VMCUSTOM_TEXTINPUT_PRICE_BY_LETTER_OR_INPUT', 'customfield_params[' . $row . '][custom_price_by_letter]', $options, $field->custom_price_by_letter, '', 'value', 'text', false);
//$html .= ($field->custom_price_by_letter==1)?vmText::_('VMCUSTOM_TEXTINPUT_PRICE_BY_LETTER'):vmText::_('VMCUSTOM_TEXTINPUT_PRICE_BY_INPUT');
$html .= '</td>
</tr>
</table>
</fieldset>';
$retValue .= $html;
$row++;
return true;
}
示例6:
echo VmHTML::row('input', 'COM_VIRTUEMART_SLUG', 'slug', $this->shipment->slug);
?>
<?php
echo VmHTML::row('booleanlist', 'COM_VIRTUEMART_PUBLISHED', 'published', $this->shipment->published);
?>
<?php
echo VmHTML::row('textarea', 'COM_VIRTUEMART_SHIPPING_FORM_DESCRIPTION', 'shipment_desc', $this->shipment->shipment_desc);
?>
<?php
echo VmHTML::row('raw', 'COM_VIRTUEMART_SHIPPING_CLASS_NAME', $this->pluginList);
?>
<?php
echo VmHTML::row('raw', 'COM_VIRTUEMART_SHIPPING_FORM_SHOPPER_GROUP', $this->shopperGroupList);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_LIST_ORDER', 'ordering', $this->shipment->ordering, 'class="inputbox"', '', 4, 4);
?>
<?php
if ($this->showVendors()) {
echo VmHTML::row('raw', 'COM_VIRTUEMART_VENDOR', $this->vendorList);
}
if ($this->showVendors) {
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_SHARED', 'shared', $this->shipment->shared);
}
?>
</table>
</fieldset>
</div>
示例7: displayCustomFields
/**
* This displays a custom handler.
*
* @param string $html atttributes, Just for displaying the fullsized image
*/
public function displayCustomFields($datas)
{
JLoader::register('VmHTML', JPATH_VM_ADMINISTRATOR . '/helpers/html.php');
if ($datas->field_type) {
$this->addHidden('field_type', $datas->field_type);
}
$this->addHiddenByType($datas);
$html = "";
// Note stuio42 : never used
// JLoader::register('Permissions', JPATH_VM_ADMINISTRATOR.'/helpers/permissions.php');
// if (!Permissions::getInstance ()->check ('admin')) {
// $readonly = 'readonly';
// }
// else {
// $readonly = '';
// }
// only input when not set else display
if ($datas->field_type) {
if ($datas->field_type == 'E') {
if (jText::_('custom_' . $datas->custom_element) !== 'vmcustom_' . $datas->custom_element) {
$plugin = ' (' . jText::_('vmcustom_' . $datas->custom_element) . ')';
} else {
$plugin = ' (' . $datas->custom_element . ')';
}
} else {
$plugin = '';
}
$typeName = jText::_($datas->field_types[$datas->field_type]) . $plugin;
$html .= VmHTML::row('value', 'COM_VIRTUEMART_CUSTOM_FIELD_TYPE', $typeName);
} else {
$html .= VmHTML::row('select', 'COM_VIRTUEMART_CUSTOM_FIELD_TYPE', 'field_type', $this->getOptions($datas->field_types), $datas->field_type, VmHTML::validate('R'));
}
$html .= VmHTML::row('input', 'COM_VIRTUEMART_TITLE', 'custom_title', $datas->custom_title, VmHTML::validate('S'));
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_SHOW_TITLE', 'show_title', $datas->show_title);
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_PUBLISHED', 'published', $datas->published);
$html .= VmHTML::row('select', 'COM_VIRTUEMART_CUSTOM_PARENT', 'custom_parent_id', $this->getParentList($datas->virtuemart_custom_id), $datas->custom_parent_id, '');
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_CUSTOM_IS_CART_ATTRIBUTE', 'is_cart_attribute', $datas->is_cart_attribute);
$html .= VmHTML::row('input', 'COM_VIRTUEMART_DESCRIPTION', 'custom_field_desc', $datas->custom_field_desc);
// change input by type
$html .= VmHTML::row('input', 'COM_VIRTUEMART_DEFAULT', 'custom_value', $datas->custom_value);
$html .= VmHTML::row('input', 'COM_VIRTUEMART_CUSTOM_TIP', 'custom_tip', $datas->custom_tip);
$html .= VmHTML::row('input', 'COM_VIRTUEMART_CUSTOM_LAYOUT_POS', 'layout_pos', $datas->layout_pos);
//$html .= VmHTML::row('booleanlist','COM_VIRTUEMART_CUSTOM_PARENT','custom_parent_id',$this->getCustomsList(), $datas->custom_parent_id,'');
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_CUSTOM_ADMIN_ONLY', 'admin_only', $datas->admin_only);
if ($datas->field_type !== 'E') {
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_CUSTOM_IS_LIST', 'is_list', $datas->is_list);
}
$html .= VmHTML::row('booleanlist', 'COM_VIRTUEMART_CUSTOM_IS_HIDDEN', 'is_hidden', $datas->is_hidden);
$html .= VmHTML::inputHidden($this->_hidden);
return $html;
}
示例8: array
<td class="key">
<span class="hasTip" title="<?php echo vmText::_('com_tsmart_ADMIN_CFG_MAIL_FROM_RECIPIENT_EXPLAIN'); ?>">
<label for="mail_from_recipient"><?php echo vmText::_('com_tsmart_ADMIN_CFG_MAIL_FROM_RECIPIENT') ?></span>
</span>
</td>
<td>
<?php echo VmHTML::checkbox('mail_from_recipient', VmConfig::get('mail_from_recipient',0)); ?>
</td>
</tr>
<tr>
<td class="key">
<span class="hasTip" title="<?php echo vmText::_('com_tsmart_ADMIN_CFG_MAIL_FROM_SETSENDER_EXPLAIN'); ?>">
<label for="mail_from_setsender"><?php echo vmText::_('com_tsmart_ADMIN_CFG_MAIL_FROM_SETSENDER') ?></span>
</span>
</td>
<td>
<?php echo VmHTML::checkbox('mail_from_setsender', VmConfig::get('mail_from_setsender',0)); ?>
</td>
</tr --><?php */
$attrlist = 'class="inputbox" multiple="multiple" ';
echo VmHTML::row('genericlist', 'com_tsmart_ADMIN_CFG_STATUS_PDF_INVOICES', $this->osWoP_Options, 'inv_os[]', $attrlist, 'order_status_code', 'order_status_name', tsmConfig::get('inv_os', array('C')), 'inv_os', true);
echo VmHTML::row('genericlist', 'com_tsmart_CFG_OSTATUS_EMAILS_SHOPPER', $this->osWoP_Options, 'email_os_s[]', $attrlist, 'order_status_code', 'order_status_name', tsmConfig::get('email_os_s', array('U', 'C', 'S', 'R', 'X')), 'email_os_s', true);
echo VmHTML::row('genericlist', 'com_tsmart_CFG_OSTATUS_EMAILS_VENDOR', $this->os_Options, 'email_os_v[]', $attrlist, 'order_status_code', 'order_status_name', tsmConfig::get('email_os_v', array('U', 'C', 'R', 'X')), 'email_os_v', true);
echo VmHTML::row('input', 'com_tsmart_CFG_ATTACH', 'attach', tsmConfig::get('attach', ''));
echo VmHTML::row('genericlist', 'com_tsmart_CFG_ATTACH_OS', $this->osWoP_Options, 'attach_os[]', $attrlist, 'order_status_code', 'order_status_name', tsmConfig::get('attach_os', array('U', 'C', 'R', 'X')), 'attach_os', true);
?>
</table>
</fieldset>
示例9:
?>
</span>
</label>
</td>
<td>
<img src="templates/khepri/images/menu/icon-16-default.png" alt="<?php
echo JText::_('Default');
?>
" />
</td>
</tr>
<?php
}
?>
<?php
echo VmHTML::row('textarea', 'COM_VIRTUEMART_SHOPPERGROUP_DESCRIPTION', 'shopper_group_desc', $this->shoppergroup->shopper_group_desc);
?>
</table>
</fieldset>
<fieldset>
<legend><?php
echo JText::_('COM_VIRTUEMART_ADMIN_CFG_PRICES');
?>
</legend>
<table class="admintable">
<tr>
<td>
<?php
echo JText::_('COM_VIRTUEMART_SHOPPERGROUP_ENABLE_PRICE_DISPLAY');
示例10: array
<?php
//echo VmHTML::row('booleanlist','COM_VIRTUEMART_VISIBLE_FOR_SHOPPER','calc_shopper_published',$this->calc->calc_shopper_published);
?>
<?php
//echo VmHTML::row('booleanlist','COM_VIRTUEMART_VISIBLE_FOR_VENDOR','calc_vendor_published',$this->calc->calc_vendor_published);
?>
<?php
echo VmHTML::row('raw', 'COM_VIRTUEMART_START_DATE', vmJsApi::jDate($this->calc->publish_up, 'publish_up'));
?>
<?php
echo VmHTML::row('raw', 'COM_VIRTUEMART_END_DATE', vmJsApi::jDate($this->calc->publish_down, 'publish_down'));
?>
<?php
if (Vmconfig::get('multix', 'none') !== 'none' and $this->perms->check('admin')) {
echo VmHTML::row('raw', 'COM_VIRTUEMART_VENDOR', $this->vendorList);
}
?>
</table></fieldset>
<?php
if (!class_exists('vmCalculationPlugin')) {
require JPATH_VM_PLUGINS . DS . 'vmcalculationplugin.php';
}
JPluginHelper::importPlugin('vmcalculation');
$dispatcher = JDispatcher::getInstance();
$html = '';
$returnValues = $dispatcher->trigger('plgVmOnDisplayEdit', array(&$this->calc, &$html));
echo $html;
?>
示例11:
?>
</tr>
<tr>
<?php
echo VmHTML::row('input', 'PLG_VMSHIPMENT_ZASILKOVNA_ESHOP_DOMAIN', 'zasilkovna_eshop_domain', $zasConfig['zasilkovna_eshop_domain']);
?>
</tr>
<tr>
<?php
echo VmHTML::row('value', 'PLG_VMSHIPMENT_ZASILKOVNA_VERSION', $this->moduleVersion);
?>
</tr>
<tr>
<?php
echo VmHTML::row('checkbox', 'PLG_VMSHIPMENT_ZASILKOVNA_DEFAULT_SELECT', 'zasilkovna_default_select', $zasConfig['zasilkovna_default_select']);
?>
</tr>
</table>
</fieldset>
<fieldset>
<legend><?php
echo JText::_('PLG_VMSHIPMENT_ZASILKOVNA_COD');
?>
</legend>
<table class="admintable">
<?php
foreach ($this->paymentMethods as $paymentMethod) {
?>
<tr>
示例12:
?>
<table>
<tr>
<td valign="top">
<fieldset>
<legend><?php
echo JText::_('COM_VIRTUEMART_ADMIN_CFG_PRICE_CONFIGURATION');
?>
</legend>
<table class="admintable">
<?php
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_ADMIN_CFG_PRICE_SHOW_TAX', 'show_tax', VmConfig::get('show_tax', 1));
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_ADMIN_CFG_PRICE_ASKPRICE', 'askprice', VmConfig::get('askprice', 1));
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_ADMIN_CFG_PRICE_RAPPENRUNDUNG', 'rappenrundung', VmConfig::get('rappenrundung', 0));
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_ADMIN_CFG_PRICE_ROUNDINDIG', 'roundindig', VmConfig::get('roundindig', 1));
echo VmHTML::row('checkbox', 'COM_VIRTUEMART_ADMIN_CFG_PRICE_CVARSWT', 'cVarswT', VmConfig::get('cVarswT', 1));
?>
</table>
</fieldset>
</td>
<td valign="top">
<fieldset>
<legend><?php
echo JText::_('COM_VIRTUEMART_ADMIN_CFG_PRICES');
?>
</legend>
<table class="admintable">
<tr>
<td class="key">
<span class="hasTip" title="<?php
echo JText::_('COM_VIRTUEMART_ADMIN_CFG_SHOW_PRICES_EXPLAIN');
示例13: array
?>
</legend>
<table class="admintable">
<?php
echo VmHTML::row('checkbox', 'com_tsmart_REVIEWS_AUTOPUBLISH', 'reviews_autopublish', tsmConfig::get('reviews_autopublish', 0));
echo VmHTML::row('input', 'com_tsmart_ADMIN_CFG_REVIEW_MINIMUM_COMMENT_LENGTH', 'reviews_minimum_comment_length', tsmConfig::get('reviews_minimum_comment_length', 0));
echo VmHTML::row('input', 'com_tsmart_ADMIN_CFG_REVIEW_MAXIMUM_COMMENT_LENGTH', 'reviews_maximum_comment_length', tsmConfig::get('reviews_maximum_comment_length', 0));
$showReviewFor = array('none' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_SHOW_NONE'), 'registered' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_SHOW_REGISTERED'), 'all' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_SHOW_ALL'));
//showReviewFor
echo VmHTML::row('radioList', 'com_tsmart_ADMIN_CFG_REVIEW_SHOW', 'showReviewFor', tsmConfig::get('showReviewFor', 'all'), $showReviewFor);
$reviewMode = array('none' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_MODE_NONE'), 'bought' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_MODE_BOUGHT_PRODUCT'), 'registered' => tsmText::_('com_tsmart_ADMIN_CFG_REVIEW_MODE_REGISTERED'));
echo VmHTML::row('radioList', 'com_tsmart_ADMIN_CFG_REVIEW', 'reviewMode', tsmConfig::get('reviewMode', 'bought'), $reviewMode);
echo VmHTML::row('radioList', 'com_tsmart_ADMIN_CFG_RATING_SHOW', 'showRatingFor', tsmConfig::get('showRatingFor', 'all'), $showReviewFor);
echo VmHTML::row('radioList', 'com_tsmart_ADMIN_CFG_RATING', 'ratingMode', tsmConfig::get('ratingMode', 'bought'), $reviewMode);
$attrlist = 'class="inputbox" multiple="multiple" ';
echo VmHTML::row('genericlist', 'com_tsmart_REVIEWS_OS', $this->os_Options, 'rr_os[]', $attrlist, 'order_status_code', 'order_status_name', tsmConfig::get('rr_os', array('C')), 'rr_os', true);
?>
</table>
</fieldset>
</td>
</tr>
</table>
<?php
vmJsApi::addJScript('vm.imagechange', '
jQuery("#image").change(function () {
var $newimage = jQuery(this).val();
jQuery("#product_availability").val($newimage);
jQuery("#imagelib").attr({ src:"' . JURI::root(true) . $this->imagePath . '" + $newimage, alt:$newimage });
});');
?>
示例14:
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_SYMBOL', 'currency_symbol', $this->currency->currency_symbol, 'class="inputbox"', '', 20, 20);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_DECIMALS', 'currency_decimal_place', $this->currency->currency_decimal_place, 'class="inputbox"', '', 20, 20);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_DECIMALSYMBOL', 'currency_decimal_symbol', $this->currency->currency_decimal_symbol, 'class="inputbox"', '', 10, 10);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_THOUSANDS', 'currency_thousands', $this->currency->currency_thousands, 'class="inputbox"', '', 10, 10);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_POSITIVE_DISPLAY', 'currency_positive_style', $this->currency->currency_positive_style, 'class="inputbox"', '', 50, 50);
?>
<?php
echo VmHTML::row('input', 'COM_VIRTUEMART_CURRENCY_NEGATIVE_DISPLAY', 'currency_negative_style', $this->currency->currency_negative_style, 'class="inputbox"', '', 50, 50);
?>
</table>
<?php
echo JText::_('COM_VIRTUEMART_CURRENCY_DISPLAY_EXPL');
?>
</fieldset>
</div>
<input type="hidden" name="virtuemart_vendor_id" value="<?php
echo $this->currency->virtuemart_vendor_id;
?>
" />
<input type="hidden" name="virtuemart_currency_id" value="<?php
echo $this->currency->virtuemart_currency_id;
示例15: displayCustomSelection
/**
* Displays a possibility to select created custom
*
* @author Max Milbers
* @author Patrick Kohl
*/
public function displayCustomSelection()
{
$customslist = $this->getParentList();
if (isset($this->virtuemart_custom_id)) {
$value = $this->virtuemart_custom_id;
} else {
$value = vRequest::getInt('custom_parent_id', 0);
}
return VmHTML::row('select', 'COM_VIRTUEMART_CUSTOM_GROUP', 'custom_parent_id', $customslist, $value);
}