Dojo/Form/Decorator/DijitElement.php

Show: inherited
Table of Contents

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 [email protected] so we can send you a copy immediately.

Category
Zend  
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Form  

\Zend_Dojo_Form_Decorator_DijitElement

Package: Zend\Dojo\Form\Decorator

Zend_Dojo_Form_Decorator_DijitElement

Render a dojo dijit element via a view helper

Accepts the following options: - separator: string with which to separate passed in content and generated content - placement: whether to append or prepend the generated content to the passed in content - helper: the name of the view helper to use

Assumes the view helper accepts three parameters, the name, value, and optional attributes; these will be provided by the element.

Parent(s)
\Zend_Form_Decorator_ViewHelper < \Zend_Form_Decorator_Abstract
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Version
$Id: DijitElement.php 24593 2012-01-05 20:35:02Z matthew $  

Constants

Constant  APPEND = 'APPEND'

Properties

Propertyprotectedarray $_attribs =

Element attributes

Details
Type
array
Propertyprotectedarray $_buttonTypes = array('Zend_Dojo_Form_Element_Button', 'Zend_Form_Element_Button', 'Zend_Form_Element_Reset', 'Zend_Form_Element_Submit')

Element types that represent buttons

Default valuearray('Zend_Dojo_Form_Element_Button', 'Zend_Form_Element_Button', 'Zend_Form_Element_Reset', 'Zend_Form_Element_Submit')Details
Type
array
Propertyprotectedarray $_dijitParams = array()

Dijit option parameters

Default valuearray()Details
Type
array
Propertyprotectedstring $_helper =
inherited

View helper to use when rendering

Inherited from: \Zend_Form_Decorator_ViewHelper::$$_helper
Details
Type
string
Inherited_from
\Zend_Form_Decorator_ViewHelper::$$_helper  
Propertyprotectedarray $_options = array()
Default valuearray()Details
Type
array
Inherited_from
\Zend_Form_Decorator_Abstract::$$_options  
Inherited_from
\Zend_Form_Decorator_ViewHelper::$$_options  
Propertyprotectedstring $_placement = 'APPEND'
Default value'APPEND'Details
Type
string
Inherited_from
\Zend_Form_Decorator_Abstract::$$_placement  
Inherited_from
\Zend_Form_Decorator_ViewHelper::$$_placement  
Propertyprotectedstring $_separator = PHP_EOL
inherited

Separator between new content and old

Inherited from: \Zend_Form_Decorator_Abstract::$$_separator\Zend_Form_Decorator_ViewHelper::$$_separator
Default valuePHP_EOLDetails
Type
string
Inherited_from
\Zend_Form_Decorator_Abstract::$$_separator  
Inherited_from
\Zend_Form_Decorator_ViewHelper::$$_separator  

Methods

methodpublic__construct(array | \Zend_Config $options = null) : void

Accept options during initialization.

Parameters
Name Type Description
$options array | \Zend_Config
methodpublicgetDijitParam(string $key) : mixed | null

Retrieve a single dijit option parameter

Parameters
Name Type Description
$key string
Returns
Type Description
mixed | null
methodpublicgetDijitParams() : array

Get dijit option parameters

Returns
Type Description
array
methodpublicgetElement() : \Zend_Form_Element | \Zend_Form
Returns
Type Description
\Zend_Form_Element | \Zend_Form
methodpublicgetElementAttribs() : array

Get element attributes

Set id to element name and/or array item.

Returns
Type Description
array
methodpublicgetHelper() : string
inherited

Retrieve view helper for rendering element

Inherited from: \Zend_Form_Decorator_ViewHelper::getHelper()
Returns
Type Description
string
methodpublicgetName() : string
inherited

Get name

Inherited from: \Zend_Form_Decorator_ViewHelper::getName()

If element is a Zend_Form_Element, will attempt to namespace it if the element belongs to an array.

Returns
Type Description
string
methodpublicgetOption(string $key) : mixed
Parameters
Name Type Description
$key string
Returns
Type Description
mixed
methodpublicgetOptions() : array
Returns
Type Description
array
methodpublicgetPlacement() : string
inherited

Determine if decorator should append or prepend content

Inherited from: \Zend_Form_Decorator_Abstract::getPlacement()\Zend_Form_Decorator_ViewHelper::getPlacement()
Returns
Type Description
string
methodpublicgetSeparator() : string
inherited

Retrieve separator to use between old and new content

Inherited from: \Zend_Form_Decorator_Abstract::getSeparator()\Zend_Form_Decorator_ViewHelper::getSeparator()
Returns
Type Description
string
methodpublicgetValue(\Zend_Form_Element $element) : string | null
inherited

Get value

Inherited from: \Zend_Form_Decorator_ViewHelper::getValue()

If element type is one of the button types, returns the label.

Parameters
Name Type Description
$element \Zend_Form_Element
Returns
Type Description
string | null
methodpublicremoveOption(mixed $key) : void
Parameters
Name Type Description
$key mixed
methodpublicrender(string $content) : string

Render an element using a view helper

Determine view helper from 'helper' option, or, if none set, from the element type. Then call as helper($element->getName(), $element->getValue(), $element->getAttribs())

Parameters
Name Type Description
$content string
Returns
Type Description
string
Throws
Exception Description
\Zend_Form_Decorator_Exception if element or view are not registered
methodpublicsetConfig(\Zend_Config $config) : \Zend_Form_Decorator_Abstract
inherited

Set options from config object

Inherited from: \Zend_Form_Decorator_Abstract::setConfig()\Zend_Form_Decorator_ViewHelper::setConfig()
Parameters
Name Type Description
$config \Zend_Config
Returns
Type Description
\Zend_Form_Decorator_Abstract
methodpublicsetDijitParam(string $key, mixed $value) : \Zend_Dojo_Form_Decorator_DijitContainer

Set a single dijit option parameter

Parameters
Name Type Description
$key string
$value mixed
Returns
Type Description
\Zend_Dojo_Form_Decorator_DijitContainer
methodpublicsetDijitParams(array $params) : \Zend_Dojo_Form_Decorator_DijitContainer

Set dijit option parameters

Parameters
Name Type Description
$params array
Returns
Type Description
\Zend_Dojo_Form_Decorator_DijitContainer
methodpublicsetElement(\Zend_Form_Element | \Zend_Form $element) : \Zend_Form_Decorator_Abstract

While the name is "setElement", a form decorator could decorate either an element or a form object.

Parameters
Name Type Description
$element \Zend_Form_Element | \Zend_Form
Returns
Type Description
\Zend_Form_Decorator_Abstract
Throws
Exception Description
\Zend_Form_Decorator_Exception on invalid element type
methodpublicsetHelper(string $helper) : \Zend_Form_Decorator_Element_ViewHelper
inherited

Set view helper to use when rendering

Inherited from: \Zend_Form_Decorator_ViewHelper::setHelper()
Parameters
Name Type Description
$helper string
Returns
Type Description
\Zend_Form_Decorator_Element_ViewHelper
methodpublicsetOption(string $key, mixed $value) : \Zend_Form_Decorator_Abstract
Parameters
Name Type Description
$key string
$value mixed
Returns
Type Description
\Zend_Form_Decorator_Abstract
methodpublicsetOptions(array $options) : \Zend_Form_Decorator_Abstract
Parameters
Name Type Description
$options array
Returns
Type Description
\Zend_Form_Decorator_Abstract
Documentation was generated by phpDocumentor 2.0.0a8.