You are here

function office_hours_views_api in Office Hours 6.2

Same name and namespace in other branches
  1. 6 office_hours.module \office_hours_views_api()
  2. 7 office_hours.module \office_hours_views_api()

Implementation of hook_views_api().

File

./office_hours.module, line 266
Creates a field and widget for inserting working or office hours per day

Code

function office_hours_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'office_hours') . '/includes',
  );
}