summaryrefslogtreecommitdiff
path: root/app/php/model/Calendar.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/Calendar.php
parentb6ad16cbd2092d76d4fed03d37a77d29b5b38f00 (diff)
* ActiveRecords model
Diffstat (limited to 'app/php/model/Calendar.php')
-rw-r--r--app/php/model/Calendar.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/php/model/Calendar.php b/app/php/model/Calendar.php
new file mode 100644
index 0000000..4438572
--- /dev/null
+++ b/app/php/model/Calendar.php
@@ -0,0 +1,40 @@
+<?php
+
+Prado::using('Application.model.Entry');
+Prado::using('Application.model.Category');
+
+class Calendar extends TActiveRecord {
+
+ const TABLE = 'calendars';
+
+ public $UID;
+ public $Url;
+ public $Name;
+ public $Website;
+ public $Visible;
+ public $LastUpdated;
+
+ public $CategoryID;
+
+ public static $COLUMN_MAPPING = [
+ 'uid' => 'UID',
+ 'url' => 'Url',
+ 'name' => 'Name',
+ 'website' => 'Website',
+ 'visible' => 'Visible',
+ 'last_updated' => 'LastUpdated',
+ '_category' => 'CategoryID'
+ ];
+
+ public static $RELATIONS = [
+ 'Entries' => [self::HAS_MANY, 'Entry', '_calendar'],
+ 'Category' => [self::BELONGS_TO, 'Category', '_category']
+ ];
+
+ public static function finder($className=__CLASS__) {
+ return parent::finder($className);
+ }
+
+}
+
+?>