1.20.x date_views_fields.inc | _date_views_fields($base = 'node') |
Identify all potential date/timestamp fields.
Return value
array: An array with fieldname, type, and table.
See also
date_views_date_views_fields()
File
- modules/
date/ views/ date_views_fields.inc, line 15 - Helper for identifying Date API fields for views.
Code
function _date_views_fields($base = 'node') {
// Make sure $base is never empty.
if (empty($base)) {
$base = 'node';
}
$cid = 'date_views_fields_' . $base;
cache_clear_all($cid, 'cache_views');
// We use fields that provide filter handlers as our universe of possible
// fields of interest.
module_load_include('inc', 'views_ui', 'views_ui.admin');
$all_fields = views_fetch_fields($base, 'filter');
// Iterate over all the fields that Views knows about.
$fields = array();
foreach ((array) $all_fields as $alias => $val) {
// Set up some default values.
$granularity = array('year', 'month', 'day', 'hour', 'minute', 'second');
$tz_handling = 'site';
$related_fields = array();
$timezone_field = '';
$offset_field = '';
$delta_field = '';
$sql_type = DATE_UNIX;
$type = '';
$name = $alias;
$tmp = explode('.', $name);
$field_name = $tmp[1];
$table_name = $tmp[0];
// Unset the date filter to avoid ugly recursion and broken values.
if ($field_name == 'date_filter') {
continue;
}
$fromto = array($name, $name);
// If we don't have a filter handler, we don't need to do anything more.
if (!$handler = views_get_handler($table_name, $field_name, 'filter')) {
continue;
}
$handler = views_get_handler($table_name, $field_name, 'filter');
// We don't care about anything but date handlers.
if (empty($handler->definition['is date'])) {
continue;
}
$is_field = FALSE;
// For Field module fields, get the date type.
$custom = array();
if (isset($handler->definition['field_name'])) {
$field = field_info_field($handler->definition['field_name']);
$is_field = TRUE;
switch ($field['type']) {
case 'date':
$sql_type = DATE_ISO;
break;
case 'datestamp':
break;
case 'datetime':
$sql_type = DATE_DATETIME;
break;
default:
// If this is not a date field, nothing more to do.
}
$revision = in_array($base, array('node_revision')) ? FIELD_LOAD_REVISION : FIELD_LOAD_CURRENT;
$db_info = date_database_info($field, $revision);
$name = $table_name . "." . $field_name;
$grans = array('year', 'month', 'day', 'hour', 'minute', 'second');
$granularity = !empty($field['granularity']) ? $field['granularity'] : $grans;
$fromto = array(
$table_name . '.' . $db_info['columns'][$table_name]['value'],
$table_name . '.' . (!empty($field['settings']['todate']) ? $db_info['columns'][$table_name]['value2'] : $db_info['columns'][$table_name]['value']),
);
if (isset($field['settings']['tz_handling'])) {
$tz_handling = $field['settings']['tz_handling'];
$db_info = date_database_info($field, $revision);
if ($tz_handling == 'date') {
$offset_field = $table_name . '.' . $db_info['columns'][$table_name]['offset'];
}
$related_fields = array(
$table_name . '.' . $db_info['columns'][$table_name]['value']
);
if (isset($db_info['columns'][$table_name]['value2'])) {
$related_fields = array_merge($related_fields, array($table_name . '.' . $db_info['columns'][$table_name]['value2']));
}
if (isset($db_info['columns'][$table_name]['timezone'])) {
$related_fields = array_merge($related_fields, array($table_name . '.' . $db_info['columns'][$table_name]['timezone']));
$timezone_field = $table_name . '.' . $db_info['columns'][$table_name]['timezone'];
}
}
// Get the delta value into the query.
if ($field['cardinality'] != 1) {
array_push($related_fields, "$table_name.delta");
$delta_field = $table_name . '_delta';
}
}
// Allow custom modules to provide date fields.
else {
foreach (module_implements('date_views_fields') as $module) {
$function = $module . '_date_views_fields';
if ($custom = $function("$table_name.$field_name")) {
$type = 'custom';
break;
}
}
}
// Don't do anything if this is not a date field we can handle.
if (!empty($type) || empty($custom)) {
$alias = str_replace('.', '_', $alias);
$fields['name'][$name] = array(
'is_field' => $is_field,
'sql_type' => $sql_type,
'label' => $val['group'] . ': ' . $val['title'],
'granularity' => $granularity,
'fullname' => $name,
'table_name' => $table_name,
'field_name' => $field_name,
'query_name' => $alias,
'fromto' => $fromto,
'tz_handling' => $tz_handling,
'offset_field' => $offset_field,
'timezone_field' => $timezone_field,
'related_fields' => $related_fields,
'delta_field' => $delta_field,
);
// Allow the custom fields to over-write values.
if (!empty($custom)) {
foreach ($custom as $custom_key => $custom_val) {
$fields['name'][$name][$custom_key] = $custom_val;
}
}
$fields['name'][$name]['real_field_name'] = $field_name;
$fields['alias'][$alias] = $fields['name'][$name];
}
}
cache_set($cid, $fields, 'cache_views');
return $fields;
}