You are here

function _date_feeds_timezone_options in Feeds 7.2

Returns the timezone options.

Return value

array A map of timezone options.

2 calls to _date_feeds_timezone_options()
date_feeds_form_callback in mappers/date.inc
Form callback for date field targets.
date_feeds_summary_callback in mappers/date.inc
Summary callback for date field targets.

File

mappers/date.inc, line 145
On behalf implementation of Feeds mapping API for date.module.

Code

function _date_feeds_timezone_options() {
  return array(
    '__SITE__' => t('Site default'),
  ) + system_time_zones();
}