You are here

function date_ap_style_views_handlers in AP Style Date 7

Implements hook_views_handlers().

File

./date_ap_style.views.inc, line 26
Provides views handler for AP date style.

Code

function date_ap_style_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'date_ap_style') . '/includes/views/handlers',
    ),
    'handlers' => array(
      'date_ap_style_handler_field_date' => array(
        'parent' => 'views_handler_field_date',
      ),
    ),
  );
}