本文整理汇总了PHP中FormField::createTag方法的典型用法代码示例。如果您正苦于以下问题:PHP FormField::createTag方法的具体用法?PHP FormField::createTag怎么用?PHP FormField::createTag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormField
的用法示例。
在下文中一共展示了FormField::createTag方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: AJAXLinkHiddenField
/**
* Used for storing the quantity update link for ajax use.
*/
public function AJAXLinkHiddenField()
{
if ($quantitylink = $this->item->setquantityLink()) {
$attributes = array('type' => 'hidden', 'class' => 'ajaxQuantityField_qtylink', 'name' => $this->MainID() . '_Quantity_SetQuantityLink', 'value' => $quantitylink);
$formfield = new FormField('hack');
return $formfield->createTag('input', $attributes);
}
}
示例2: AJAXLinkHiddenField
/**
* Used for storing the quantity update link for ajax use.
*/
function AJAXLinkHiddenField()
{
if ($quantitylink = ShoppingCart::set_quantity_item_link($this->item->getProductIDForSerialization(), null, $this->parameters)) {
$attributes = array('type' => 'hidden', 'class' => 'ajaxQuantityField_qtylink', 'name' => $this->item->MainID() . '_Quantity_SetQuantityLink', 'value' => $quantitylink);
$formfield = new FormField('hack');
return $formfield->createTag('input', $attributes);
}
}
示例3: AJAXLinkHiddenField
/**
* Used for storing the quantity update link for ajax use.
* @return String (HTML)
*/
function AJAXLinkHiddenField()
{
$name = $this->orderItem->AJAXDefinitions()->TableID() . '_Quantity_SetQuantityLink';
if ($quantitylink = $this->getQuantityLink()) {
$attributes = array('type' => 'hidden', 'class' => 'ajaxQuantityField_qtylink', 'name' => $name, 'value' => $quantitylink);
$formfield = new FormField($name);
return $formfield->createTag('input', $attributes);
}
}