sfWidgetFormSelect represents a select HTML tag.
Method Summary
-
configure($options, $attributes)
Constructor.
-
array
getOptionsForSelect($value, $choices)
Returns an array of option tags for the given choices
-
string
render($name, $value, $attributes, $errors)
Renders the widget.
configure , getChoices , __clone
fixFormId , generateId , generateTwoCharsRange , getDefault , getIdFormat , getLabel , getParent , isHidden , needsMultipartForm , renderContentTag , renderTag , setDefault , setHidden , setIdFormat , setLabel , setParent , translate , translateAll , __construct
Methods inherited from sfWidget
addOption , addRequiredOption , attributesToHtml , attributesToHtmlCallback , configure , escapeOnce , fixDoubleEscape , getAttribute , getAttributes , getCharset , getJavaScripts , getOption , getOptions , getRequiredOptions , getStylesheets , hasOption , isXhtml , render , renderContentTag , renderTag , setAttribute , setAttributes , setCharset , setOption , setOptions , setXhtml , __construct
Method Details
-
configure ($options, $attributes)
Browse code
| $options |
An array of options |
| $attributes |
An array of default HTML attributes |
Constructor.
Available options: * choices: An array of possible choices (required)
* multiple: true if the select tag must allow multiple selections
-
(array) getOptionsForSelect ($value, $choices)
Browse code
| $value |
The selected value |
| $choices |
An array of choices |
Returns an array of option tags for the given choices
returns An array of option tags
-
(string) render ($name, $value, $attributes, $errors)
Browse code
| $name |
The element name |
| $value |
The value selected in this widget |
| $attributes |
An array of HTML attributes to be merged with the default HTML attributes |
| $errors |
An array of errors for the field |
Renders the widget.
returns An HTML tag string
|