Form/Decorator/HtmlTag.php
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.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Form
- Subpackage
- Decorator
\Zend_Form_Decorator_HtmlTag
Package: Zend_Form\DecoratorZend_Form_Decorator_Element_HtmlTag
Wraps content in an HTML block tag.
Options accepted are:
- tag: tag to use in decorator
- noAttribs: do not render attributes in the opening tag
- placement: 'append' or 'prepend'. If 'append', renders opening and
closing tag after content; if prepend, renders opening and closing tag
before content.
- openOnly: render opening tag only
- closeOnly: render closing tag only
Any other options passed are processed as HTML attributes of the tag.
- Parent(s)
- \Zend_Form_Decorator_Abstract
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Version
- $Id$
Properties



string $_placement = null
Placement; default to surround content
Default valuenull
Details- Type
- string
Methods



_getCloseTag(string $tag) : string
Get formatted closing tag
ParametersName | Type | Description |
---|
$tag | string | |
---|
Returns 


_getOpenTag(string $tag, array $attribs = null) : string
Get the formatted open tag
ParametersName | Type | Description |
---|
$tag | string | |
---|
$attribs | array | |
---|
Returns 


_htmlAttribs( $attribs) : string
Convert options to tag attributes
ParametersName | Type | Description |
---|
$attribs | | |
---|
Returns 


render(string $content) : string
Render content wrapped in an HTML tag
ParametersName | Type | Description |
---|
$content | string | |
---|
Returns