root/trunk/app/models/themeblog.php

Revision 784, 373 bytes (checked in by aarkerio, 8 weeks ago)

Triki Trake beggins

Line 
1<?php 
2/*
3*  Chipotle Software 2002-2008
4*  GPL v3
5*  @version 0.3
6*/
7
8class Themeblog extends AppModel {
9
10public $name    = 'Themeblog';
11
12public $hasMany = 'Entry';
13
14public $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.