box-o-sand/php-practice/web-cake/html/app/models/post.php

16 lines
245 B
PHP
Raw Normal View History

2011-01-03 16:08:43 +00:00
<?php
class Post extends AppModel {
public $name = "Post";
public $validate = array(
"title" => array(
"rule" => "notEmpty"
),
"body" => array(
"rule" => "notEmpty"
)
);
}
?>