-
addCSRFProtection ($secret)
Browse code
| $secret |
The secret to use to compute the CSRF token |
Adds CSRF protection to the current form.
-
bind ($taintedValues, $taintedFiles)
Browse code
| $taintedValues |
An array of input values |
| $taintedFiles |
An array of uploaded files (in the $_FILES or $_GET format) |
Binds the form with input values.
It triggers the validator schema validation.
-
Configures the current form.
-
(array) convertFileInformation ($taintedFiles)
Browse code
| $taintedFiles |
An array representing uploaded file information |
Converts uploaded file array to a format following the $_GET and $POST naming convention.
It's safe to pass an already converted array, in which case this method just returns the original array unmodified.
returns An array of re-ordered uploaded file information
-
(array) deepArrayUnion ($array1, $array2)
Browse code
| $array1 |
An array to merge |
| $array2 |
An array to merge |
Merges two arrays without reindexing numeric keys.
returns The merged array
-
disableCSRFProtection ()
Browse code
Disables CSRF protection for all forms.
-
embedForm ($name, $form, $decorator)
Browse code
| $name |
The field name |
| $form |
A sfForm instance |
| $decorator |
A HTML decorator for the embedded form |
Embeds a sfForm into the current form.
-
embedFormForEach ($name, $form, $n, $decorator, $innerDecorator, $options, $attributes, $labels)
Browse code
| $name |
The field name |
| $form |
A sfForm instance |
| $n |
The number of times to embed the form |
| $decorator |
A HTML decorator for the main form around embedded forms |
| $innerDecorator |
A HTML decorator for each embedded form |
| $options |
Options for schema |
| $attributes |
Attributes for schema |
| $labels |
Labels for schema |
Embeds a sfForm into the current form n times.
-
enableCSRFProtection ($secret)
Browse code
| $secret |
A secret to use when computing the CSRF token |
Enables CSRF protection for all forms.
The given secret will be used for all forms, except if you pass a secret in the constructor.
Even if a secret is automatically generated if you don't provide a secret, you're strongly advised
to provide one by yourself.
-
-
(string) getCSRFFieldName ()
Browse code
Gets the CSRF field name.
returns The CSRF field name
-
(string) getCSRFToken ($secret)
Browse code
| $secret |
The secret string to use |
Returns a CSRF token, given a secret.
If you want to change the algorithm used to compute the token, you
can override this method.
returns A token string
-
Gets a default value for a form field.
-
(array) getDefaults ()
Browse code
Gets the default values for the form.
returns An array of default values
-
(sfValidatorErrorSchema) getErrorSchema ()
Browse code
Gets the error schema associated with the form.
returns A sfValidatorErrorSchema instance
-
(sfFormFieldSchema) getFormFieldSchema ()
Browse code
Returns a form field for the main widget schema.
returns A sfFormFieldSchema instance
-
(array) getGlobalErrors ()
Browse code
Gets the global errors associated with the form.
returns An array of global errors
-
getOption ($name, $default, )
Browse code
| $name |
The option name |
| $default |
The default value (null by default) |
Gets an option value.
-
(Exception) getToStringException ()
Browse code
Gets the exception if one was thrown in the __toString() method.
This is a hack needed because PHP does not allow to throw exceptions in __toString() magic method.
-
(sfValidatorSchema) getValidatorSchema ()
Browse code
Gets the validator schema associated with this form.
returns A sfValidatorSchema instance
-
(string) getValue ($field)
Browse code
| $field |
The name of the value required |
Returns a cleaned value by field name.
If the form is not bound, it will return null.
returns The cleaned value
-
Returns the array of cleaned values.
If the form is not bound, it returns an empty array.
returns An array of cleaned values
-
(sfWidgetFormSchema) getWidgetSchema ()
Browse code
Gets the widget schema associated with this form.
returns A sfWidgetFormSchema instance
-
Returns true if the form has a default value for a form field.
-
(Boolean) hasGlobalErrors ()
Browse code
Returns true if the form has some global errors.
returns true if the form has some global errors, false otherwise
-
(boolean) hasToStringException ()
Browse code
Returns true if a form thrown an exception in the __toString() method
This is a hack needed because PHP does not allow to throw exceptions in __toString() magic method.
-
Returns true if the form is bound to input values.
returns true if the form is bound to input values, false otherwise
-
@return true if this form is CSRF protected
-
(Boolean) isMultipart ()
Browse code
Returns true if the form is multipart.
returns true if the form is multipart
-
Returns true if the form is valid.
It returns false if the form is not bound.
returns true if the form is valid, false otherwise
-
| $form |
The sfForm instance to merge with current form |
Merges current form widget and validator schemas with the ones from the
sfForm object passed as parameter. Please note it also merge defaults.
throws LogicException If one of the form has already been bound
-
mergePostValidator ($validator)
Browse code
| $validator |
A validator to be merged |
Merges a validator with the current post validators.
-
mergePreValidator ($validator)
Browse code
| $validator |
A validator to be merged |
Merges a validator with the current pre validators.
-
(Boolean) offsetExists ($name)
Browse code
| $name |
The name of the bound field |
Returns true if the bound field exists (implements the ArrayAccess interface).
returns true if the widget exists, false otherwise
-
(sfFormField) offsetGet ($name)
Browse code
| $name |
The offset of the value to get |
Returns the form field associated with the name (implements the ArrayAccess interface).
returns A form field instance
-
offsetSet ($offset, $value)
Browse code
| $offset |
(ignored) |
| $value |
(ignored) |
Throws an exception saying that values cannot be set (implements the ArrayAccess interface).
throws LogicException
-
Removes a field from the form.
It removes the widget, validator and any values stored for the given field.
-
(string) render ($attributes)
Browse code
| $attributes |
An array of HTML attributes |
Renders the widget schema associated with this form.
returns The rendered widget schema
-
(string) renderGlobalErrors ()
Browse code
Renders global errors associated with this form.
returns The rendered global errors
-
-
setCSRFFieldName ($name)
Browse code
| $name |
The CSRF field name |
Sets the CSRF field name.
-
setDefault ($name, $default)
Browse code
| $name |
The field name |
| $default |
The default value |
Sets a default value for a form field.
-
setDefaults ($defaults)
Browse code
| $defaults |
An array of default values |
Sets the default values for the form.
The default values are only used if the form is not bound.
-
setOption ($name, $value)
Browse code
| $name |
The option name |
| $value |
The default value |
Sets an option value.
-
setToStringException ($e)
Browse code
| $e |
The exception thrown by __toString() |
Sets an exception thrown by the __toString() method.
This is a hack needed because PHP does not allow to throw exceptions in __toString() magic method.
-
Setups the current form.
This method is overridden by generator.
If you want to do something at initialization, you have to override the configure() method.
-
setValidators ($validators)
Browse code
| $validators |
An array of named validators |
Sets the validators associated with this form.
-
setValidatorSchema ($validatorSchema)
Browse code
| $validatorSchema |
A sfValidatorSchema instance |
Sets the validator schema associated with this form.
-
| $widgets |
An array of named widgets |
Sets the widgets associated with this form.
-
setWidgetSchema ($widgetSchema)
Browse code
| $widgetSchema |
A sfWidgetFormSchema instance |
Sets the widget schema associated with this form.
-
-
__construct ($defaults, $options, $CRFSSecret)
Browse code
| $defaults |
An array of field default values |
| $options |
An array of options |
| $CRFSSecret |
A CSRF secret (false to disable CSRF protection, null to use the global CSRF secret) |
Constructor.
-
(string) __toString ()
Browse code
Returns a string representation of the form.
returns A string representation of the form