本文整理匯總了PHP中Zend\Form\Fieldset::getAttribute方法的典型用法代碼示例。如果您正苦於以下問題:PHP Fieldset::getAttribute方法的具體用法?PHP Fieldset::getAttribute怎麽用?PHP Fieldset::getAttribute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend\Form\Fieldset
的用法示例。
在下文中一共展示了Fieldset::getAttribute方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: renderFieldset
/**
* Render a Fieldset
*
* @param Zend\Form\Fieldset $fieldset
* @return void
*/
public function renderFieldset(Fieldset $fieldset)
{
$id = $fieldset->getAttribute('id') ?: $fieldset->getName();
return '<fieldset id="fieldset-' . $id . '">' . $this->render($fieldset) . '</fieldset>';
}
示例2: renderFieldset
/**
* Render a Fieldset
*
* @param \Zend\Form\Fieldset $fieldset
* @return string
*/
public function renderFieldset(Fieldset $fieldset)
{
$id = $fieldset->getAttribute('id') ?: $fieldset->getName();
$class = $fieldset->getAttribute('class');
$label = $fieldset->getLabel();
if (!empty($label)) {
$label = "<legend>{$label}</legend>";
}
return '<fieldset id="fieldset-' . $id . '" class="' . $class . '">' . $label . $this->render($fieldset) . '</fieldset>';
}
示例3: renderFieldset
/**
* @param Fieldset $fieldset
* @param boolean $groupActions
*
* @return HtmlElement
*/
protected function renderFieldset(Fieldset $fieldset, $groupActions = false)
{
$fieldsetElement = new HtmlElement('fieldset');
$id = $fieldset->getAttribute('id') ?: $fieldset->getName();
$parent = $this->getElement();
$fieldsetElement->addAttribute('id', $id);
/**
* This changes the scope of the current element,
* so that the child elements (the ones that are about to be rendered),
* will be set on the fieldset.
* Then change it back again so that the fieldset will be added to the form.
*/
$this->setElement($fieldsetElement)->renderElements($fieldset, $groupActions)->setElement($parent);
return $fieldsetElement;
}