在php模板中自定义验证器的翻译

时间:2013-03-20 16:39:10

标签: symfony translation

我为自己构建了一个自定义约束验证器。验证器正在运行。但是如何在php模板中翻译CUSTOM验证器的错误消息呢?其他验证器消息正在运行,因此我确实在app/config/validators.XX.yml中进行了翻译。

在我的行动中:

$form = $this->createFormBuilder()
             ->add('date_id', 'choice', array(
                ....
                'constraints' => array(new CheckChoicesDateId(array('date_ids' => $date_ids))),
                ....
            ))

在Bundle / Validator / Constraints

class CheckChoicesDateId extends Constraint
{
    public $invalidMessage = '{{ value }}';
    public $date_ids;
    public function __construct($options = null)
    {
        parent::__construct($options);

        if (null === $this->date_ids ) {
            throw new MissingOptionsException('Option date_ids must be given for constraint ' . __CLASS__, array('date_ids'));
        }
    }
}

在Bundle / Validator / Constraints

class CheckChoicesDateIdValidator extends ConstraintValidator {

    public function validate($value, Constraint $constraint) {

        if ($value == NULL || !isset($value)) {
            $this->context->addViolation($constraint->invalidMessage, array(
                '{{ value }}' => 'error.date.0',
                //I also tried $this->get('translator')->trans('error.date.0');
                // with the error message: Call to undefined method GET
            ));
        }


        if (is_numeric($value)) {
            $t = array_key_exists($value, $constraint->date_ids);
            if ($t == NULL) {
                $this->context->addViolation($constraint->invalidMessage, array(
                    '{{ value }}' => 'error.date.1',
                ));
            }
        }
        return;
    }

}

在我的模板中:

<?php echo $view['form']->errors($form['date_id']) ?>
//I also tried
<?php echo $this->get('translator')->trans($view['form']->errors($form['date_id'])) ?>

1 个答案:

答案 0 :(得分:0)

我确实有一个解决方案,但我想这不太好:

在动作中,我为每个可能的错误传递一个变量。

'constraints' => array(new CheckChoicesDateId(array('date_ids' => $date_ids, 'error_date_0 => $this->get('translator')...., 'error_date_1 => $this->get('translator')....  ))),

在自定义验证器中,我使用$constraint->error_date_X为每个错误调用了正确的变量。

不好,但它有效。如果有人有更好的解决方案,请随时发布!