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


PHP Zend_Form::removeDisplayGroup方法代碼示例

本文整理匯總了PHP中Zend_Form::removeDisplayGroup方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Form::removeDisplayGroup方法的具體用法?PHP Zend_Form::removeDisplayGroup怎麽用?PHP Zend_Form::removeDisplayGroup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Form的用法示例。


在下文中一共展示了Zend_Form::removeDisplayGroup方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testRemovingFormItemsShouldNotRaiseExceptionsDuringIteration

 public function testRemovingFormItemsShouldNotRaiseExceptionsDuringIteration()
 {
     $this->setupElements();
     $bar = $this->form->bar;
     $this->form->removeElement('bar');
     try {
         foreach ($this->form as $item) {
         }
     } catch (Exception $e) {
         $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
     }
     $this->form->addElement($bar);
     $this->form->addDisplayGroup(array('baz', 'bar'), 'bazbar');
     $this->form->removeDisplayGroup('bazbar');
     try {
         foreach ($this->form as $item) {
         }
     } catch (Exception $e) {
         $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
     }
     $subForm = new Zend_Form_SubForm();
     $subForm->addElements(array('foo' => 'text', 'bar' => 'text'));
     $this->form->addSubForm($subForm, 'page1');
     $this->form->removeSubForm('page1');
     try {
         foreach ($this->form as $item) {
         }
     } catch (Exception $e) {
         $this->fail('Exceptions should not be raised by iterator when elements are removed; error message: ' . $e->getMessage());
     }
 }
開發者ID:vicfryzel,項目名稱:zf,代碼行數:31,代碼來源:FormTest.php

示例2: reAssignElements

 /**
  * Explicitly removes and re-adds elements to the provided form to
  * ensure that the form re-builds the element order.
  *
  * Due to a bug this is required if the order of an element is
  * changed after the internal form index was created:
  * {@link http://framework.zend.com/issues/browse/ZF-9946}
  *
  * @param Zend_Form $form
  * @param array(Zend_Form_Element|Zend_Form|Zend_Form_DisplayGroup) $elements
  */
 protected function reAssignElements(Zend_Form $form, array $elements)
 {
     $elementsByType = $this->categorizeElements($elements);
     foreach ($elementsByType['elements'] as $element) {
         /* @var $element Zend_Form_Element */
         $form->removeElement($element->getName());
         $form->addElement($element);
     }
     foreach ($elementsByType['subForms'] as $subForm) {
         /* @var $subForm Zend_Form */
         $form->removeSubForm($subForm->getName());
         $form->addSubForm($subForm, $subForm->getName());
     }
     foreach ($elementsByType['displayGroups'] as $displayGroup) {
         /* @var $displayGroup Zend_Form_DisplayGroup */
         $form->removeDisplayGroup($displayGroup->getName());
         $form->addDisplayGroup($displayGroup->getElements(), $displayGroup->getName());
     }
 }
開發者ID:matthimatiker,項目名稱:molcomponents,代碼行數:30,代碼來源:Captcha.php


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