You are here

function cmfcCalendarV1::setOption in Calendar Systems 5

Same name and namespace in other branches
  1. 8 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  2. 8.2 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  3. 6.3 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  4. 6 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  5. 7.3 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  6. 7 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()
  7. 7.2 calendar/v1/calendarV1.class.inc.php \cmfcCalendarV1::setOption()

Overrides cmfcClassesCore::setOption

File

calendar/v1/calendarV1.class.inc.php, line 53

Class

cmfcCalendarV1

Code

function setOption($name, $value, $merge = false) {
  if ($name == 'timeZoneOffset') {
    $this
      ->setTimeZoneOffset($value);
  }
  return parent::setOption($name, $value, $merge);
}