summaryrefslogtreecommitdiff
path: root/app/frontend/model/Entry.php
blob: 1249118ba7524e7f17480e61f6426dfeb57e2625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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']
    ];

}

?>