# shiftcontroller/4.9.85/sh4/reminders/model.php

ShiftController Employee Shift Scheduling, version 4.9.85. 16 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.85/code/sh4/reminders/model.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.85/raw/sh4/reminders/model.php
- Modified: 2022-10-20T22:16:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shiftcontroller/4.9.85/code/sh4/reminders/model.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
class SH4_Reminders_Model
{
	const RANGE_DAILY = 'daily';
	const RANGE_DAILY_SMS = 'dailysms';
	const RANGE_WEEKLY = 'weekly';
	const RANGE_MONTHLY = 'monthly';

	public $user;
	public $employee;

	public $shifts = array();
	public $range;
	public $date;
	public $log;
}
```
