| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
class SH4_Reminders_Model |
| 3 |
{ |
| 4 |
const RANGE_DAILY = 'daily'; |
| 5 |
const RANGE_DAILY_SMS = 'dailysms'; |
| 6 |
const RANGE_WEEKLY = 'weekly'; |
| 7 |
const RANGE_MONTHLY = 'monthly'; |
| 8 |
|
| 9 |
public $user; |
| 10 |
public $employee; |
| 11 |
|
| 12 |
public $shifts = array(); |
| 13 |
public $range; |
| 14 |
public $date; |
| 15 |
public $log; |
| 16 |
} |