You are here

function clean_markup_views_views_api in Clean Markup 7.3

Implements hook_views_api().

File

modules/clean_markup_views/clean_markup_views.module, line 11
Provides clean Views markup.

Code

function clean_markup_views_views_api() {
  $path = drupal_get_path('module', 'clean_markup_views');
  return array(
    'api' => 3,
    'path' => $path,
    'template path' => $path . '/templates',
  );
}