You are here

office_hours.views.inc in Office Hours 6

Same filename and directory in other branches
  1. 6.2 includes/office_hours.views.inc

File

includes/office_hours.views.inc
View source
<?php

/**
 * Implementation of hook_views_handlers().
 */
function office_hours_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'office_hours') . '/includes',
    ),
    'handlers' => array(
      'office_hours_handler_filter_hours' => array(
        'parent' => 'views_handler_filter_numeric',
      ),
      'office_hours_handler_filter_day' => array(
        'parent' => 'content_handler_filter_many_to_one',
      ),
    ),
  );
}

Functions

Namesort descending Description
office_hours_views_handlers Implementation of hook_views_handlers().