DataObjects/Core_notify_recur.php
[Pman.Core] / DataObjects / Core_notify_recur.php
1 <?php
2 /**
3  * Table Definition for core_notify_recur
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_notify_recur extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_notify_recur';    // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $person_id;                       // int(11)  not_null
15     public $dtstart;                         // datetime(19)  not_null binary
16     public $dtend;                           // datetime(19)  not_null binary
17     public $tz;                              // real(6)  not_null
18     public $updated_dt;                      // datetime(19)  not_null binary
19     public $last_applied_dt;                 // datetime(19)  not_null binary
20
21     public $freq; //  varchar(8) NOT NULL;
22     public $freq_day; // text NOT NULL;
23     public $freq_hour; // text 
24     ###END_AUTOCODE
25     
26     
27     /*
28       freq =  DAILY | YEARLY | MONTHLY
29         *
30         *        THESE ARE EXCLUSIVE..
31         *        freq_day =  1,2,3,4,5" - day number.. or dayofmonth USES TIME FROM DTSTART (unless hours are speced.)
32         *        >> must..
33         *        freq_hourly = 'what hours' << OR IF EMPTY USES TIME FROM DTSTART
34         *
35     /* the code above is auto generated do not remove the tag below */
36     
37     
38     function notifytimesRange($advance) {
39        
40         $start = date('Y-m-d H:i:s', max(strtotime("NOW - 24 HOURS"), sttotime($this->dtstart)));
41         $end  = date('Y-m-d H:i:s', min(strtotime("NOW  + $advance DAYS"), sttotime($this->dtend)));
42     
43     }
44     
45     function notifytimes($advance)
46     {
47         
48         // make a list of datetimes when notifies need to be generated for.
49         // it starts 24 hours ago.. or when dtstart
50         list($start, $end) = $this->notifytimesRange($advance);
51         if (strtotime($start) > strtotime($end)) {
52             return array(); // no data..
53         }
54         
55         
56         
57         switch($this->freq) {
58             case 'HOURLY':
59                 
60                 $days = 
61                 // happens every day based on freq_hour.
62                 $hours = explode(',', $this->freq_hour);
63                 foreach($hours as $h) {
64                     
65                 }
66                 
67             case 'DAILY':
68                 
69                 
70             case 'MONTHLY': // ignored..
71             case 'YEARLY': // ignored..
72                 break;
73             
74         }
75         
76         
77         
78         
79         
80     }
81     
82     
83     
84 }