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