summaryrefslogtreecommitdiff
path: root/app/php/model/Calendar.php
diff options
context:
space:
mode:
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);
+ }
+
+}
+
+?>