在cakephp中定义常量

时间:2016-09-12 14:25:24

标签: php cakephp cakephp-3.x

任何人都有一个想法,在cakephp 3.x中定义错误消息的更好方法是什么,

我当前正在排除内联的错误消息,如。

$validator
            ->requirePresence('fname', true)
            ->notEmpty('fname')
            ->add('fname', [
                'length' => [
                    'rule' => ['maxLength', 100],
                    'message' => __('First name cannot be too long.'),
                ]
    ]);

但我想要定义常量,以便将来更改消息会有所帮助,但我不知道更好的方法。 蛋糕提供任何功能吗?

0 个答案:

没有答案