ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Settings.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\VObject;
4
18class Settings {
19
28 static $minDate = '1900-01-01';
29
37 static $maxDate = '2100-01-01';
38
54 static $maxRecurrences = 3500;
55
56}
An exception for terminatinating execution or to throw for unit testing.
This class provides a list of global defaults for vobject.
Definition: Settings.php:18
static $maxDate
The maximum date we accept for various calculations with dates, such as recurrences.
Definition: Settings.php:37
static $maxRecurrences
The maximum number of recurrences that will be generated.
Definition: Settings.php:54
static $minDate
The minimum date we accept for various calculations with dates, such as recurrences.
Definition: Settings.php:28