Gets the default timezone to be used by the date filter.
DateTimeZone The default timezone currently in use
public function getTimezone() {
if (null === $this->timezone) {
$this->timezone = new DateTimeZone(date_default_timezone_get());
}
return $this->timezone;
}