Я пытаюсь добавить сообщения проверки в Kohana 3 (модель Orm).
classes / model / cliente.php
<?php defined('SYSPATH') or die('No direct script access.');
class Model_Cliente extends ORM {
protected $_table_name = 'clientes';
protected $_primary_key = 'id';
protected $_has_one = array('loja' => array());
protected $_rules = array(
'responsavel' => array('not_empty' => array(), 'min_length' => array(3)),
'email' => array('not_empty' => array(), 'email' => array()),
'telefone' => array('regex' => array('/^(\(\d{2}\)|\d{2})[ -]?\d{4}[ -]?\d{4}$/'))
);
}
?>
messages / cliente.php
<?php defined('SYSPATH') or die('No direct script access.');
return array(
'responsavel' => array(
'not_empty' => 'O nome do responsável não pode ficar em branco.',
'min_length' => 'O nome do responsável deve conter 3 caracteres ou mais.'
)
);
?>
Вывод:
Array ( [responsavel] => Array ( [0] => not_empty [1] => Array ( ) ) [email] => Array ( [0] => not_empty [1] => Array ( ) ) )
Я не получаю никакого сообщения проверки, только этот вывод выше ... Любая идея?Спасибо.