LinksTableForm.class.php 377 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * LinksTable form.
  4. *
  5. * @package usic
  6. * @subpackage form
  7. * @author Your name here
  8. * @version SVN: $Id: sfPropelFormTemplate.php 10377 2008-07-21 07:10:32Z dwhittle $
  9. */
  10. class LinksTableForm extends BaseLinksTableForm
  11. {
  12. public function configure()
  13. {
  14. parent::configure();
  15. $this->validatorSchema['created_at']->setOption('required', false);
  16. }
  17. }