diff options
Diffstat (limited to 'app/php/model/Category.php')
-rw-r--r-- | app/php/model/Category.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/php/model/Category.php b/app/php/model/Category.php new file mode 100644 index 0000000..03a368a --- /dev/null +++ b/app/php/model/Category.php @@ -0,0 +1,27 @@ +<?php + +Prado::using('Application.model.Calendar'); + +class Category extends TActiveRecord { + + const TABLE = 'categories'; + + public $ID; + public $Name; + + public static $COLUMN_MAPPING = [ + 'id' => 'ID', + 'name' => 'Name' + ]; + + public static $RELATIONS = [ + 'Calendars' => [self::HAS_MANY, 'Calendar', '_category'] + ]; + + public static function finder($className=__CLASS__) { + return parent::finder($className); + } + +} + +?> |