diff options
Diffstat (limited to 'app/php/model/Entry.php')
-rw-r--r-- | app/php/model/Entry.php | 40 |
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); + } + +} + +?> |