diff options
Diffstat (limited to 'app/frontend/model/Entry.php')
-rw-r--r-- | app/frontend/model/Entry.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app/frontend/model/Entry.php b/app/frontend/model/Entry.php new file mode 100644 index 0000000..4b93f04 --- /dev/null +++ b/app/frontend/model/Entry.php @@ -0,0 +1,43 @@ +<?php + +Prado::using('Application.db.ActiveRecord'); +Prado::using('Application.model.Calendar'); + +class Entry extends ActiveRecord { + + const TABLE = 'entries'; + + public $ID; + public $UID; + public $BeginDate; + public $EndDate; + public $AllDay; + public $Name; + public $Location; + public $LastModified; + + public $CalendarID; + + public static $COLUMN_MAPPING = [ + 'id' => 'ID', + 'uid' => 'UID', + 'begin_date' => 'BeginDate', + 'end_date' => 'EndDate', + 'all_day' => 'AllDay', + 'name' => 'Name', + 'location' => 'Location', + 'last_modified' => 'LastModified', + '_calendar' => 'CalendarID' + ]; + + public static $RELATIONS = [ + 'Calendar' => [self::BELONGS_TO, 'Calendar', '_calendar'] + ]; + + public static function finder($className=__CLASS__) { + return parent::finder($className); + } + +} + +?> |