示例#1
0
 /**
  * Add element to stack
  *
  * @param  Zend_Form_Element $element
  * @return Centurion_Form_DisplayGroup
  */
 public function addDisplayGroup(Zend_Form_DisplayGroup $element)
 {
     $this->_displayGroups[$element->getName()] = $element;
     $this->_orders[$element->getName()] = count($this->_order);
     $this->_groupUpdated = true;
     return $this;
 }
 /**
  * Add a display group object (used with cloning)
  *
  * @param  Zend_Form_DisplayGroup $group
  * @param  string|null $name
  * @return Zend_Form
  */
 protected function _addDisplayGroupObject(Zend_Form_DisplayGroup $group, $name = null)
 {
     if (null === $name) {
         $name = $group->getName();
         if ('' === (string) $name) {
             require_once 'Zend/Form/Exception.php';
             throw new Zend_Form_Exception('Invalid display group added; requires name');
         }
     }
     $this->_displayGroups[$name] = $group;
     if (!empty($this->_displayGroupPrefixPaths)) {
         $this->_displayGroups[$name]->addPrefixPaths($this->_displayGroupPrefixPaths);
     }
     $this->_order[$name] = $this->_displayGroups[$name]->getOrder();
     $this->_orderUpdated = true;
     return $this;
 }
示例#3
0
 public function testPassingConfigObjectToConstructorSetsObjectState()
 {
     $config = new Zend_Config($this->getOptions());
     $group = new Zend_Form_DisplayGroup('foo', $this->loader, $config);
     $this->assertEquals('foo', $group->getName());
     $this->assertEquals('Display Group', $group->getLegend());
     $this->assertEquals(20, $group->getOrder());
     $this->assertEquals('foobar', $group->getAttrib('class'));
 }