function views_handler_field_dates in Views (for Drupal 7) 5
Provide a list of all standard supproted date output handlers.
3 calls to views_handler_field_dates()
- comment_views_tables in modules/
views_comment.inc - This include file implements views functionality on behalf of comment.module
- node_views_tables in modules/
views_node.inc - This include file implements views functionality on behalf of node.module
- statistics_views_tables in modules/
views_statistics.inc - This include file implements views functionality on behalf of statistics.module
File
- ./
views.module, line 1659
Code
function views_handler_field_dates() {
return array(
'views_handler_field_date_small' => t('As Short Date'),
'views_handler_field_date' => t('As Medium Date'),
'views_handler_field_date_large' => t('As Long Date'),
'views_handler_field_date_custom' => t('As Custom Date'),
'views_handler_field_since' => t('As Time Ago'),
);
}