FormHelper
class FormHelper extends Helper
FormHelper provides helpers to help display forms.
Methods
Returns the canonical name of this helper.
Returns a CSRF token.
No description
Details
in Helper at line line 31
setCharset(string $charset)
Sets the default charset.
in Helper at line line 41
string
getCharset()
Gets the default charset.
at line line 34
__construct(FormRendererInterface $renderer)
at line line 42
string
getName()
Returns the canonical name of this helper.
at line line 55
setTheme(FormView $view, string|array $themes)
Sets a theme for a given view.
The theme format is "
at line line 84
string
form(FormView $view, array $variables = array())
Renders the HTML for a form.
Example usage:
<?php echo view['form']->form($form) ?>
You can pass options during the call:
<?php echo view['form']->form($form, array('attr' => array('class' => 'foo'))) ?>
<?php echo view['form']->form($form, array('separator' => '+++++')) ?>
This method is mainly intended for prototyping purposes. If you want to control the layout of a form in a more fine-grained manner, you are advised to use the other helper methods for rendering the parts of the form individually. You can also create a custom form theme to adapt the look of the form.
at line line 101
string
start(FormView $view, array $variables = array())
Renders the form start tag.
Example usage templates:
<?php echo $view['form']->start($form) ?>>
at line line 118
string
end(FormView $view, array $variables = array())
Renders the form end tag.
Example usage templates:
<?php echo $view['form']->end($form) ?>>
at line line 141
string
widget(FormView $view, array $variables = array())
Renders the HTML for a given view.
Example usage:
<?php echo $view['form']->widget($form) ?>
You can pass options during the call:
<?php echo $view['form']->widget($form, array('attr' => array('class' => 'foo'))) ?>
<?php echo $view['form']->widget($form, array('separator' => '+++++')) ?>
at line line 154
string
row(FormView $view, array $variables = array())
Renders the entire form field "row".
at line line 168
string
label(FormView $view, string $label = null, array $variables = array())
Renders the label of the given view.
at line line 184
string
errors(FormView $view)
Renders the errors of the given view.
at line line 197
string
rest(FormView $view, array $variables = array())
Renders views which have not already been rendered.
at line line 211
string
block(FormView $view, string $blockName, array $variables = array())
Renders a block of the template.
at line line 241
string
csrfToken(string $tokenId)
Returns a CSRF token.
Use this helper for CSRF protection without the overhead of creating a form.
echo $view['form']->csrfToken('rmuser'.$user->getId());
Check the token in your action using the same CSRF token id.
$csrfProvider = $this->get('security.csrf.tokengenerator');
if (!$csrfProvider->isCsrfTokenValid('rmuser_'.$user->getId(), $token)) {
throw new \RuntimeException('CSRF attack detected.');
}