當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Element::getAttributes方法代碼示例

本文整理匯總了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;
 }
開發者ID:haoyanfei,項目名稱:zf2,代碼行數:14,代碼來源:Csrf.php

示例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());
 }
開發者ID:razvansividra,項目名稱:pnlzf2-1,代碼行數:8,代碼來源:ElementTest.php

示例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;
 }
開發者ID:siad007,項目名稱:ctrllib,代碼行數:8,代碼來源:AbstractFormElement.php

示例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;
 }
開發者ID:siad007,項目名稱:ctrllib,代碼行數:8,代碼來源:CtrlForm.php

示例5: getAttributes

 /**
  * @return array|\Traversable
  */
 public function getAttributes()
 {
     $this->loadOptions();
     return parent::getAttributes();
 }
開發者ID:ashimidashajia,項目名稱:zendstore,代碼行數:8,代碼來源:DoctrineEntity.php

示例6: getAttributes

 /**
  * @inheritdoc
  */
 public function getAttributes()
 {
     return $this->element->getAttributes();
 }
開發者ID:adacap,項目名稱:3agest-prototype,代碼行數:7,代碼來源:Element.php


注:本文中的Zend\Form\Element::getAttributes方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。