sfWidgetFormInputFileEditable represents an upload HTML input tag with the
possibility to remove a previously uploaded file.
Method Summary
-
configure($options = array(), $attributes = array())
Constructor.
-
getFileAsTag($attributes)
-
string
render($name, $value = null, $attributes = array(), $errors = array())
configure
configure , render
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: * file_src: The current image web source path (required)
* edit_mode: A Boolean: true to enabled edit mode, false otherwise
* is_image: Whether the file is a displayable image
* with_delete: Whether to add a delete checkbox or not
* delete_label: The delete label used by the template
* template: The HTML template to use to render this widget The available placeholders are: * input (the image upload widget) * delete (the delete checkbox) * delete_label (the delete label text) * file (the file tag) In edit mode, this widget renders an additional widget named after the file upload widget with a "_delete" suffix. So, when creating a form, don't forget to add a validator for this additional field.
-
getFileAsTag ($attributes)
Browse code
-
(string) render ($name, $value = null, $attributes = array(), $errors = array())
Browse code
| $name |
The element name
|
| $value |
The value 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
|