protected function configure($options = array(), $messages = array())
 {
     parent::configure($options, $messages);
     $this->setMessage('required', isset($messages['required']) ? $messages['required'] : 'Obrigatório.');
     $this->setMessage('invalid', isset($messages['invalid']) ? $messages['invalid'] : 'Preenchimento incorreto.');
 }
<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <*****@*****.**>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
require_once dirname(__FILE__) . '/../../bootstrap/unit.php';
$t = new lime_test(2, new lime_output_color());
$v = new sfValidatorDateTime();
$t->is($v instanceof sfValidatorDate, 'sfValidatorDateTime extends sfValidatorDate');
// with_time option
$t->diag('with_time option');
$t->is($v->clean(time()), date('Y-m-d H:i:s', time()), '->clean() validates date with time');
示例#3
0
<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <*****@*****.**>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
require_once dirname(__FILE__) . '/../../bootstrap/unit.php';
$t = new lime_test(4);
$v = new sfValidatorDateTime();
$t->is($v instanceof sfValidatorDate, 'sfValidatorDateTime extends sfValidatorDate');
// with_time option
$t->diag('with_time option');
$t->is($v->clean(time()), date('Y-m-d H:i:s', time()), '->clean() validates date with time');
$t->is($v->clean(array('year' => 2005, 'month' => 1, 'day' => 4, 'hour' => 2, 'minute' => 23, 'second' => 33)), '2005-01-04 02:23:33', '->clean() validates date with time');
$t->is($v->clean('1855-08-25 13:22:56'), '1855-08-25 13:22:56', '->clean() validates date with time');
 protected function configure($options = array(), $messages = array())
 {
     parent::configure($options, $messages);
 }