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 = nullPlacement; default to surround content
Default valuenullDetails- Type
- string
Methods



_getCloseTag(string $tag) : stringGet formatted closing tag
Parameters| Name | Type | Description |
|---|
| $tag | string | |
|---|
Returns 


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


_htmlAttribs( $attribs) : stringConvert options to tag attributes
Parameters| Name | Type | Description |
|---|
| $attribs | | |
|---|
Returns 


render(string $content) : stringRender content wrapped in an HTML tag
Parameters| Name | Type | Description |
|---|
| $content | string | |
|---|
Returns