~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/app/models/profile.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
* Profile Model
 
4
 
5
* @author Geoffrey
 
6
*
 
7
* The following will be filled automatically by SubVersion!
 
8
* Do not change by hand!
 
9
*  $LastChangedDate: $
 
10
*  $LastChangedBy:  $
 
11
*  $LastChangedRevision: $
 
12
*
 
13
*/
 
14
class Profile extends AppModel {
 
15
        
 
16
        var $name = 'Profile';
 
17
        var $hasMany = 'Index';
 
18
        var $validate = array(
 
19
                'name' => 'alphaNumeric',
 
20
                'url' => 'url'
 
21
        );
 
22
}
 
 
b'\\ No newline at end of file'