You are here

function simpleads_date_views_fields in SimpleAds 7.2

Implements hook_date_views_fields().

File

./simpleads.views.inc, line 11
SimpleAds Views.

Code

function simpleads_date_views_fields($field) {
  $values = array(
    // The type of date: DATE_UNIX, DATE_ISO, DATE_DATETIME.
    'sql_type' => DATE_UNIX,
    // Timezone handling options: 'none', 'site', 'date', 'utc' .
    'tz_handling' => 'site',
    // Needed only for dates that use 'date' tz_handling.
    'timezone_field' => '',
    // Needed only for dates that use 'date' tz_handling.
    'offset_field' => '',
    // Array of "table.field" values for related fields that should be
    // loaded automatically in the Views SQL.
    'related_fields' => array(),
    // Granularity of this date field's db data.
    'granularity' => array(
      'year',
      'month',
      'day',
    ),
  );
  switch ($field) {
    case 'simpleads_stats.date':
      return $values;
  }
}