Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created July 17, 2011 02:07
Show Gist options
  • Select an option

  • Save TiuTalk/1087032 to your computer and use it in GitHub Desktop.

Select an option

Save TiuTalk/1087032 to your computer and use it in GitHub Desktop.
Exemplo de validação de Model
<?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