Created
July 17, 2011 02:07
-
-
Save TiuTalk/1087032 to your computer and use it in GitHub Desktop.
Exemplo de validação de Model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Noticia extends AppModel { | |
| public $name = 'Noticia'; | |
| public $validate = array( | |
| 'titulo' => array( | |
| 'rule' => 'notEmpty', | |
| 'message' => 'Preencha o título' | |
| ), | |
| 'tweet' => array( | |
| 'rule' => array('maxLength', 140), | |
| 'message' => 'Digite no máximo 140 caracteres' | |
| ) | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment