]> git.mxchange.org Git - friendica-addons.git/blob - dav/common/dbclasses/dbclass.friendica.notifications.class.php
Initial Release of the calendar plugin
[friendica-addons.git] / dav / common / dbclasses / dbclass.friendica.notifications.class.php
1 <?php
2
3 # Generated automatically - do not change!
4
5 class DBClass_friendica_notifications extends DBClass_animexx {
6         /** @var $PRIMARY_KEY array */
7         public $PRIMARY_KEY = array("id");
8
9         protected $SRC_TABLE = 'notifications';
10         /** @var $ical_uri string */
11         /** @var $ical_recurr_uri string */
12         /** @var $alert_date string */
13         /** @var $rel_type string */
14
15         public $ical_uri, $ical_recurr_uri, $alert_date, $rel_type;
16
17         /** @var $id int */
18         /** @var $uid int */
19         /** @var $namespace int */
20         /** @var $namespace_id int */
21         /** @var $rel_value int */
22         /** @var $notified int */
23
24         public $id, $uid, $namespace, $namespace_id, $rel_value, $notified;
25
26         /** @var $REL_TYPE_VALUES array */
27         public static $REL_TYPE_VALUES = array('second', 'minute', 'hour', 'day', 'week', 'month', 'year');
28         public static $REL_TYPE_SECOND = 'second';
29         public static $REL_TYPE_MINUTE = 'minute';
30         public static $REL_TYPE_HOUR = 'hour';
31         public static $REL_TYPE_DAY = 'day';
32         public static $REL_TYPE_WEEK = 'week';
33         public static $REL_TYPE_MONTH = 'month';
34         public static $REL_TYPE_YEAR = 'year';
35
36
37         protected $_string_fields = array('ical_uri', 'ical_recurr_uri', 'alert_date', 'rel_type');
38         protected $_int_fields = array('id', 'uid', 'namespace', 'namespace_id', 'rel_value', 'notified');
39         protected $_null_fields = array();
40 }