sfWidgetFormTime represents a time widget.
Method Summary
-
configure($options = array(), $attributes = array())
Constructor.
-
string
render($name, $value = null, $attributes = array(), $errors = array())
fixFormId , generateId , generateTwoCharsRange , getDefault , getIdFormat , getLabel , isHidden , needsMultipartForm , renderContentTag , renderTag , setDefault , setHidden , setIdFormat , setLabel , __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 = array(), $attributes = array())
Browse code
| $options |
An array of options
|
| $attributes |
An array of default HTML attributes
|
Constructor.
Available options: * format: The time format string (%hour%:%minute%:%second%)
* format_without_seconds: The time format string without seconds (%hour%:%minute%)
* with_seconds: Whether to include a select for seconds (false by default)
* hours: An array of hours for the hour select tag (optional)
* minutes: An array of minutes for the minute select tag (optional)
* seconds: An array of seconds for the second select tag (optional)
* can_be_empty: Whether the widget accept an empty value (true by default)
* empty_values: An array of values to use for the empty value (empty string for hours, minutes, and seconds by default)
-
(string) render ($name, $value = null, $attributes = array(), $errors = array())
Browse code
| $name |
The element name
|
| $value |
The time displayed 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
|
returns An HTML tag string
|