* If not specified, then date is caclulated based on current user timezone.
* Note: dst will be calculated for string timezones only
* {@link http://docs.moodle.org/dev/Time_API#Timezone}
- * applydst => apply users daylight savings adjustment?
* optional => if true, show a checkbox beside the date to turn it on (or off)
* @var array
*/
protected $_options = array('startyear' => 1970, 'stopyear' => 2020,
- 'timezone' => 99, 'applydst' => true, 'optional' => false);
+ 'timezone' => 99, 'optional' => false);
/** @var array These complement separators, they are appended to the resultant HTML */
protected $_wrap = array('', '');
$valuearray['day'],
0, 0, 0,
$this->_options['timezone'],
- $this->_options['applydst']);
+ true);
return $value;
} else {
* If not specified, then date is caclulated based on current user timezone.
* Note: dst will be calculated for string timezones only
* {@link http://docs.moodle.org/dev/Time_API#Timezone}
- * applydst => apply users daylight savings adjustment?
* step => step to increment minutes by
* optional => if true, show a checkbox beside the date to turn it on (or off)
* @var array
*/
var $_options = array('startyear' => 1970, 'stopyear' => 2020, 'defaulttime' => 0,
- 'timezone' => 99, 'applydst' => true, 'step' => 5, 'optional' => false);
+ 'timezone' => 99, 'step' => 5, 'optional' => false);
/** @var array These complement separators, they are appended to the resultant HTML */
var $_wrap = array('', '');
$valuearray['minute'],
0,
$this->_options['timezone'],
- $this->_options['applydst']);
+ true);
return $value;
} else {