summaryrefslogtreecommitdiff
path: root/app/php/model/Category.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-02-26 14:59:53 +0100
committeremkael <emkael@tlen.pl>2016-02-26 14:59:53 +0100
commit0f69294121ee68616961af02bcfc0c7662cd3ba5 (patch)
tree2b290c247a48a5cf8c6f6234722f4fa4bacada23 /app/php/model/Category.php
parentb6ad16cbd2092d76d4fed03d37a77d29b5b38f00 (diff)
* ActiveRecords model
Diffstat (limited to 'app/php/model/Category.php')
-rw-r--r--app/php/model/Category.php27
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);
+ }
+
+}
+
+?>