FormEvents.php 689 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Form;
  11. /**
  12. * @author Bernhard Schussek <bernhard.schussek@symfony.com>
  13. */
  14. final class FormEvents
  15. {
  16. const PRE_BIND = 'form.pre_bind';
  17. const POST_BIND = 'form.post_bind';
  18. const PRE_SET_DATA = 'form.pre_set_data';
  19. const POST_SET_DATA = 'form.post_set_data';
  20. const BIND_CLIENT_DATA = 'form.bind_client_data';
  21. const BIND_NORM_DATA = 'form.bind_norm_data';
  22. const SET_DATA = 'form.set_data';
  23. }