本文整理汇总了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;
}