Ejemplo n.º 1
0
 /**
  * Remove all decorators to the specified zend form element
  * @param \Zend_Form_Element $element the element to remove the decorators from
  */
 public function removeAllDecorators(\Zend_Form_Element $element)
 {
     $element->removeDecorator("Description");
     $element->removeDecorator("HtmlTag");
     $element->removeDecorator("Label");
     $element->removeDecorator("DtDdWrapper");
     $element->removeDecorator("Errors");
 }
Ejemplo n.º 2
0
 /**
  * Removes all default decorators from a form element.
  *
  * @param Zend_Form_Element $element A form element
  *
  * @return void
  */
 protected function _removeDefaultElementDecorators(Zend_Form_Element $element)
 {
     $element->removeDecorator('HtmlTag');
     $element->removeDecorator('Label');
     $element->removeDecorator('FormElement');
     $element->removeDecorator('Errors');
     $element->removeDecorator('DtDdWrapper');
 }
Ejemplo n.º 3
0
 /**
  * Static function that adds all the elements in 1 wrapping element instead of dt, dd structure
  *
  * @param $elm
  * @return void
  */
 public static function setElementDecorator(Zend_Form_Element $elm)
 {
     $elm->addPrefixPath('Glitch_Form_Decorator', 'Glitch/Form/Decorator/', 'decorator');
     $labelSettings = array();
     if ($elm->getDecorator('Label')) {
         $labelSettings = $elm->getDecorator('Label')->getOptions();
         unset($labelSettings['tag']);
         //Tag should never be needed when you call this method
     }
     $class = 'wrapper';
     if ($elm->getAttrib('wrapperClass')) {
         $class .= ' ' . $elm->getAttrib('wrapperClass');
         $elm->setAttrib('wrapperClass', null);
     }
     if ($elm instanceof Zend_Form_Element_Hidden) {
         $class .= ' hidden';
     }
     $elm->clearDecorators()->addDecorator('Label', $labelSettings)->addDecorator('ViewHelper')->addDecorator('Description', array('escape' => false))->addDecorator('Errors')->addDecorator('Wrapper', array('tag' => 'div', 'id' => $elm->getName() . '-wrapper', 'class' => $class));
     if ($elm instanceof Zend_Form_Element_Submit) {
         $elm->removeDecorator('Label');
     }
 }
Ejemplo n.º 4
0
 /**
  * Remove all decorators to the specified zend form element
  * @param \Zend_Form_Element $element the element to remove the decorators from
  */
 private function removeAllDecorators(\Zend_Form_Element $element)
 {
     $element->removeDecorator("Description");
     $element->removeDecorator("HtmlTag");
     $element->removeDecorator("Label");
 }
Ejemplo n.º 5
0
 /**
  * Initialize form (used by extending classes)
  *
  * @return void
  */
 public function init()
 {
     $element = new Zend_Form_Element('layout', array('disableLoadDefaultDecorators' => true));
     $element->removeDecorator('DtDdWrapper');
 }