本文整理匯總了PHP中Zend\Form\Element::getAttributes方法的典型用法代碼示例。如果您正苦於以下問題:PHP Element::getAttributes方法的具體用法?PHP Element::getAttributes怎麽用?PHP Element::getAttributes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend\Form\Element
的用法示例。
在下文中一共展示了Element::getAttributes方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getAttributes
/**
* Override: get attributes
*
* Seeds 'value' attribute with validator hash
*
* @return array
*/
public function getAttributes()
{
$attributes = parent::getAttributes();
$validator = $this->getValidator();
$attributes['value'] = $validator->getHash();
return $attributes;
}
示例2: testCanClearAllAttributes
public function testCanClearAllAttributes()
{
$element = new Element();
$attributes = array('type' => 'text', 'class' => 'text-element', 'data-foo' => 'bar');
$element->setAttributes($attributes);
$element->clearAttributes();
$this->assertEquals(array(), $element->getAttributes());
}
示例3: createElement
protected function createElement(Element $element, $attr = array())
{
$tmpAttr = $element->getAttributes();
$element->setAttributes($this->_getElementAttr($element, $attr));
$html = $this->_getElementRenderer($element->getAttribute('type'))->render($element);
$element->setAttributes($tmpAttr);
return $html;
}
示例4: createElement
public function createElement(Element $form, $attr = array())
{
$tmpAttr = $form->getAttributes();
$form->setAttributes($this->_getElementAttr($form, $attr));
$html = $this->view->form()->openTag($form);
$form->setAttributes($tmpAttr);
return $html;
}
示例5: getAttributes
/**
* @return array|\Traversable
*/
public function getAttributes()
{
$this->loadOptions();
return parent::getAttributes();
}
示例6: getAttributes
/**
* @inheritdoc
*/
public function getAttributes()
{
return $this->element->getAttributes();
}