Documentation

Layering Decorators - Understanding and Using Zend Form Decorators

Layering Decorators

If you were following closely in the previous section, you may have noticed that a decorator's render() method takes a single argument, $content. This is expected to be a string. render() will then take this string and decide to either replace it, append to it, or prepend it. This allows you to have a chain of decorators -- which allows you to create decorators that render only a subset of the element's metadata, and then layer these decorators to build the full markup for the element.

Let's look at how this works in practice.

For most form element types, the following decorators are used:

  • ViewHelper (render the form input using one of the standard form view helpers).

  • Errors (render validation errors via an unordered list).

  • Description (render any description attached to the element; often used for tooltips).

  • HtmlTag (wrap all of the above in a <dd> tag.

  • Label (render the label preceding the above, wrapped in a <dt> tag.

You'll notice that each of these decorators does just one thing, and operates on one specific piece of metadata stored in the form element: the Errors decorator pulls validation errors and renders them; the Label decorator pulls just the label and renders it. This allows the individual decorators to be very succinct, repeatable, and, more importantly, testable.

It's also where that $content argument comes into play: each decorator's render() method is designed to accept content, and then either replace it (usually by wrapping it), prepend to it, or append to it.

So, it's best to think of the process of decoration as one of building an onion from the inside out.

To simplify the process, we'll take a look at the example from the previous section. Recall:

  1. class My_Decorator_SimpleInput extends Zend_Form_Decorator_Abstract
  2. {
  3.     protected $_format = '<label for="%s">%s</label>'
  4.                        . '<input id="%s" name="%s" type="text" value="%s"/>';
  5.  
  6.     public function render($content)
  7.     {
  8.         $element = $this->getElement();
  9.         $name    = htmlentities($element->getFullyQualifiedName());
  10.         $label   = htmlentities($element->getLabel());
  11.         $id      = htmlentities($element->getId());
  12.         $value   = htmlentities($element->getValue());
  13.  
  14.         $markup  = sprintf($this->_format, $id, $label, $id, $name, $value);
  15.         return $markup;
  16.     }
  17. }

Let's now remove the label functionality, and build a separate decorator for that.

  1. class My_Decorator_SimpleInput extends Zend_Form_Decorator_Abstract
  2. {
  3.     protected $_format = '<input id="%s" name="%s" type="text" value="%s"/>';
  4.  
  5.     public function render($content)
  6.     {
  7.         $element = $this->getElement();
  8.         $name    = htmlentities($element->getFullyQualifiedName());
  9.         $id      = htmlentities($element->getId());
  10.         $value   = htmlentities($element->getValue());
  11.  
  12.         $markup  = sprintf($this->_format, $id, $name, $value);
  13.         return $markup;
  14.     }
  15. }
  16.  
  17. class My_Decorator_SimpleLabel extends Zend_Form_Decorator_Abstract
  18. {
  19.     protected $_format = '<label for="%s">%s</label>';
  20.  
  21.     public function render($content)
  22.     {
  23.         $element = $this->getElement();
  24.         $id      = htmlentities($element->getId());
  25.         $label   = htmlentities($element->getLabel());
  26.  
  27.         $markup = sprintf($this->_format, $id, $label);
  28.         return $markup;
  29.     }
  30. }

Now, this may look all well and good, but here's the problem: as written currently, the last decorator to run wins, and overwrites everything. You'll end up with just the input, or just the label, depending on which you register last.

To overcome this, simply concatenate the passed in $content with the markup somehow:

  1. return $content . $markup;

The problem with the above approach comes when you want to programmatically choose whether the original content should precede or append the new markup. Fortunately, there's a standard mechanism for this already; Zend_Form_Decorator_Abstract has a concept of placement and defines some constants for matching it. Additionally, it allows specifying a separator to place between the two. Let's make use of those:

  1. class My_Decorator_SimpleInput extends Zend_Form_Decorator_Abstract
  2. {
  3.     protected $_format = '<input id="%s" name="%s" type="text" value="%s"/>';
  4.  
  5.     public function render($content)
  6.     {
  7.         $element = $this->getElement();
  8.         $name    = htmlentities($element->getFullyQualifiedName());
  9.         $id      = htmlentities($element->getId());
  10.         $value   = htmlentities($element->getValue());
  11.  
  12.         $markup  = sprintf($this->_format, $id, $name, $value);
  13.  
  14.         $placement = $this->getPlacement();
  15.         $separator = $this->getSeparator();
  16.         switch ($placement) {
  17.             case self::PREPEND:
  18.                 return $markup . $separator . $content;
  19.             case self::APPEND:
  20.             default:
  21.                 return $content . $separator . $markup;
  22.         }
  23.     }
  24. }
  25.  
  26. class My_Decorator_SimpleLabel extends Zend_Form_Decorator_Abstract
  27. {
  28.     protected $_format = '<label for="%s">%s</label>';
  29.  
  30.     public function render($content)
  31.     {
  32.         $element = $this->getElement();
  33.         $id      = htmlentities($element->getId());
  34.         $label   = htmlentities($element->getLabel());
  35.  
  36.         $markup = sprint($this->_format, $id, $label);
  37.  
  38.         $placement = $this->getPlacement();
  39.         $separator = $this->getSeparator();
  40.         switch ($placement) {
  41.             case self::APPEND:
  42.                 return $markup . $separator . $content;
  43.             case self::PREPEND:
  44.             default:
  45.                 return $content . $separator . $markup;
  46.         }
  47.     }
  48. }

Notice in the above that I'm switching the default case for each; the assumption will be that labels prepend content, and input appends.

Now, let's create a form element that uses these:

  1. $element = new Zend_Form_Element('foo', array(
  2.     'label'      => 'Foo',
  3.     'belongsTo'  => 'bar',
  4.     'value'      => 'test',
  5.     'prefixPath' => array('decorator' => array(
  6.         'My_Decorator' => 'path/to/decorators/',
  7.     )),
  8.     'decorators' => array(
  9.         'SimpleInput',
  10.         'SimpleLabel',
  11.     ),
  12. ));

How will this work? When we call render(), the element will iterate through the various attached decorators, calling render() on each. It will pass an empty string to the very first, and then whatever content is created will be passed to the next, and so on:

  • Initial content is an empty string: ''.

  • '' is passed to the SimpleInput decorator, which then generates a form input that it appends to the empty string: <input id="bar-foo" name="bar[foo]" type="text" value="test"/>.

  • The input is then passed as content to the SimpleLabel decorator, which generates a label and prepends it to the original content; the default separator is a PHP_EOL character, giving us this: <label for="bar-foo">\n<input id="bar-foo" name="bar[foo]" type="text" value="test"/>.

But wait a second! What if you wanted the label to come after the input for some reason? Remember that "placement" flag? You can pass it as an option to the decorator. The easiest way to do this is to pass an array of options with the decorator during element creation:

  1. $element = new Zend_Form_Element('foo', array(
  2.     'label'      => 'Foo',
  3.     'belongsTo'  => 'bar',
  4.     'value'      => 'test',
  5.     'prefixPath' => array('decorator' => array(
  6.         'My_Decorator' => 'path/to/decorators/',
  7.     )),
  8.     'decorators' => array(
  9.         'SimpleInput'
  10.         array('SimpleLabel', array('placement' => 'append')),
  11.     ),
  12. ));

Notice that when passing options, you must wrap the decorator within an array; this hints to the constructor that options are available. The decorator name is the first element of the array, and options are passed in an array to the second element of the array.

The above results in the markup <input id="bar-foo" name="bar[foo]" type="text" value="test"/>\n<label for="bar-foo">.

Using this technique, you can have decorators that target specific metadata of the element or form and create only the markup relevant to that metadata; by using mulitiple decorators, you can then build up the complete element markup. Our onion is the result.

There are pros and cons to this approach. First, the cons:

  • More complex to implement. You have to pay careful attention to the decorators you use and what placement you utilize in order to build up the markup in the correct sequence.

  • More resource intensive. More decorators means more objects; multiply this by the number of elements you have in a form, and you may end up with some serious resource usage. Caching can help here.

The advantages are compelling, though:

  • Reusable decorators. You can create truly re-usable decorators with this technique, as you don't have to worry about the complete markup, but only markup for one or a few pieces of element or form metadata.

  • Ultimate flexibility. You can theoretically generate any markup combination you want from a small number of decorators.

While the above examples are the intended usage of decorators within Zend_Form, it's often hard to wrap your head around how the decorators interact with one another to build the final markup. For this reason, some flexibility was added in the 1.7 series to make rendering individual decorators possible -- which gives some Rails-like simplicity to rendering forms. We'll look at that in the next section.

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts