This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Form/FormEvents.php

109 lines
3.3 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form;
/**
* To learn more about how form events work check the documentation
2015-02-18 07:05:44 +00:00
* entry at {@link http://symfony.com/doc/any/components/form/form_events.html}.
*
* To learn how to dynamically modify forms using events check the cookbook
2015-02-18 07:05:44 +00:00
* entry at {@link http://symfony.com/doc/any/cookbook/form/dynamic_form_modification.html}.
*
2012-05-26 08:48:33 +01:00
* @author Bernhard Schussek <bschussek@gmail.com>
*/
final class FormEvents
{
2014-10-23 13:21:59 +01:00
/**
2014-11-17 13:53:37 +00:00
* The PRE_SUBMIT event is dispatched at the beginning of the Form::submit() method.
*
* It can be used to:
* - Change data from the request, before submitting the data to the form.
* - Add or remove form fields, before submitting the data to the form.
* The event listener method receives a Symfony\Component\Form\FormEvent instance.
*
2014-10-23 13:21:59 +01:00
* @Event
*/
const PRE_SUBMIT = 'form.pre_bind';
2014-10-23 13:21:59 +01:00
/**
2014-11-17 13:53:37 +00:00
* The SUBMIT event is dispatched just before the Form::submit() method
* transforms back the normalized data to the model and view data.
*
* It can be used to change data from the normalized representation of the data.
* The event listener method receives a Symfony\Component\Form\FormEvent instance.
*
2014-10-23 13:21:59 +01:00
* @Event
*/
const SUBMIT = 'form.bind';
2014-10-23 13:21:59 +01:00
/**
2014-11-17 13:53:37 +00:00
* The FormEvents::POST_SUBMIT event is dispatched after the Form::submit()
* once the model and view data have been denormalized.
*
* It can be used to fetch data after denormalization.
* The event listener method receives a Symfony\Component\Form\FormEvent instance.
*
2014-10-23 13:21:59 +01:00
* @Event
*/
const POST_SUBMIT = 'form.post_bind';
2014-10-23 13:21:59 +01:00
/**
2014-11-17 13:53:37 +00:00
* The FormEvents::PRE_SET_DATA event is dispatched at the beginning of the Form::setData() method.
*
* It can be used to:
* - Modify the data given during pre-population;
* - Modify a form depending on the pre-populated data (adding or removing fields dynamically).
* The event listener method receives a Symfony\Component\Form\FormEvent instance.
*
2014-10-23 13:21:59 +01:00
* @Event
*/
const PRE_SET_DATA = 'form.pre_set_data';
2014-10-23 13:21:59 +01:00
/**
2014-11-17 13:53:37 +00:00
* The FormEvents::POST_SET_DATA event is dispatched at the end of the Form::setData() method.
*
* This event is mostly here for reading data after having pre-populated the form.
* The event listener method receives a Symfony\Component\Form\FormEvent instance.
*
2014-10-23 13:21:59 +01:00
* @Event
*/
const POST_SET_DATA = 'form.post_set_data';
/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link PRE_SUBMIT} instead.
2014-10-23 13:21:59 +01:00
*
* @Event
*/
const PRE_BIND = 'form.pre_bind';
/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link SUBMIT} instead.
2014-10-23 13:21:59 +01:00
*
* @Event
*/
const BIND = 'form.bind';
/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link POST_SUBMIT} instead.
2014-10-23 13:21:59 +01:00
*
* @Event
*/
const POST_BIND = 'form.post_bind';
private function __construct()
{
}
}