You are here

function node_expire_views_api in Node expire 8

Same name and namespace in other branches
  1. 6.2 node_expire.module \node_expire_views_api()
  2. 7.2 node_expire.module \node_expire_views_api()
  3. 7 node_expire.module \node_expire_views_api()

Implements hook_views_api().

File

./node_expire.module, line 296
Set a timer into your content, allowing you to perform customized actions.

Code

function node_expire_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'node_expire'),
  );
}