From ea3bb6c7982576b084f738d9944be71c7b766b5f Mon Sep 17 00:00:00 2001 From: Jeremiah Payne Date: Mon, 4 Apr 2016 14:58:03 -0600 Subject: [PATCH] Added ranges property to Model.php --- models/Event.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/models/Event.php b/models/Event.php index 65fa9ec..9c5d5e5 100644 --- a/models/Event.php +++ b/models/Event.php @@ -48,6 +48,14 @@ class Event extends Model */ public $end; + /** + * The range of dates that an event is to show on the calendar. + * Used with a function to check the dates in eventRender against the range and only render + * the dates that fall within the range. + * @var range + */ + public $ranges; + /** * Day of Week settings for repeating events. Enter the numerical days of the week ex. [1,4] would repeat on Monday and Thursday. * @var array