You are here

function revisioning_views_api in Revisioning 6.4

Same name and namespace in other branches
  1. 8 revisioning.module \revisioning_views_api()
  2. 6.3 revisioning.module \revisioning_views_api()
  3. 7 revisioning.module \revisioning_views_api()

Implementation of hook_views_api().

File

./revisioning.module, line 480
Allows the creation and modification of pre-published as well as live content while the current revision remains unchanged and publicly visible until the changes have been reviewed by a moderator.

Code

function revisioning_views_api() {
  return array(
    'api' => views_api_version(),
    'path' => drupal_get_path('module', 'revisioning'),
  );
}