Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Zend_Form_Decorator_ViewScript
Render a view script as a decorator
Accepts the options: - separator: separator to use between view script content and provided content (defaults to PHP_EOL) - placement: whether to append or prepend view script content to provided content (defaults to prepend) - viewScript: view script to use - viewModule: module that view script is in (optional)
The view script is rendered as a partial; the element being decorated is passed in as the 'element' variable:
// in view script:
echo $this->element->getLabel();
Any options other than separator, placement, viewScript, and viewModule are passed to the partial as local variables.

render(
string $content
)
:
string
Render a view script
Name | Type | Description |
---|---|---|
$content | string |
Type | Description |
---|---|
string |

setViewModule(
$viewModule
)
:
\Zend_Form_Decorator_ViewScript
Set view script module
Name | Type | Description |
---|---|---|
$viewModule |
Type | Description |
---|---|
\Zend_Form_Decorator_ViewScript |

setViewScript(
string $script
)
:
\Zend_Form_Decorator_ViewScript
Set view script
Name | Type | Description |
---|---|---|
$script | string |
Type | Description |
---|---|
\Zend_Form_Decorator_ViewScript |