summaryrefslogtreecommitdiff
path: root/app/php/model/Entry.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/Entry.php
parentb6ad16cbd2092d76d4fed03d37a77d29b5b38f00 (diff)
* ActiveRecords model
Diffstat (limited to 'app/php/model/Entry.php')
-rw-r--r--app/php/model/Entry.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/php/model/Entry.php b/app/php/model/Entry.php
new file mode 100644
index 0000000..85d522f
--- /dev/null
+++ b/app/php/model/Entry.php
@@ -0,0 +1,40 @@
+<?php
+
+Prado::using('Application.model.Calendar');
+
+class Entry extends TActiveRecord {
+
+ const TABLE = 'entries';
+
+ public $ID;
+ public $UID;
+ public $BeginDate;
+ public $EndDate;
+ public $AllDay;
+ public $Name;
+ public $Location;
+
+ public $CalendarID;
+
+ public static $COLUMN_MAPPING = [
+ 'id' => 'ID',
+ 'uid' => 'UID',
+ 'begin_date' => 'BeginDate',
+ 'end_date' => 'EndDate',
+ 'all_day' => 'AllDay',
+ 'name' => 'Name',
+ 'location' => 'Location',
+ '_calendar' => 'CalendarID'
+ ];
+
+ public static $RELATIONS = [
+ 'Calendar' => [self::BELONGS_TO, 'Calendar', '_calendar']
+ ];
+
+ public static function finder($className=__CLASS__) {
+ return parent::finder($className);
+ }
+
+}
+
+?>