sfWidgetFormDate represents a date widget.
Method Summary
-
configure($options, $attributes)
Configures the current widget.
-
string
render($value, $attributes, $errors)
@param string $name The element name
fixFormId , generateId , generateTwoCharsRange , getIdFormat , isHidden , needsMultipartForm , renderContentTag , renderTag , setHidden , setIdFormat , __construct
Methods inherited from sfWidget
addOption , addRequiredOption , attributesToHtml , attributesToHtmlCallback , configure , escapeOnce , fixDoubleEscape , getAttribute , getAttributes , getCharset , getOption , getOptions , getRequiredOptions , 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 |
Configures the current widget.
Available options: * format: The date format string (%month%/%day%/%year% by default)
* years: An array of years for the year select tag (optional)
Be careful that the keys must be the years, and the values what will be displayed to the user
* months: An array of months for the month select tag (optional)
* days: An array of days for the day 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 year, month, and day by default)
-
(string) render ($value, $attributes, $errors)
Browse code
| $value |
The date 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 |
@param string $name The element name
returns An HTML tag string
|