root/trunk/app/models/themeblog.php
| Revision 784, 373 bytes (checked in by aarkerio, 8 weeks ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | * Chipotle Software 2002-2008 |
| 4 | * GPL v3 |
| 5 | * @version 0.3 |
| 6 | */ |
| 7 | |
| 8 | class Themeblog extends AppModel { |
| 9 | |
| 10 | public $name = 'Themeblog'; |
| 11 | |
| 12 | public $hasMany = 'Entry'; |
| 13 | |
| 14 | public $validate = array( |
| 15 | 'title' => array( |
| 16 | 'rule' => array('minLength', 2), |
| 17 | 'message' => 'Minimum 2 characters long' |
| 18 | ) |
| 19 | ); |
| 20 | } |
| 21 | ?> |
Note: See TracBrowser
for help on using the browser.
