function node_expire_views_api in Node expire 7
Same name and namespace in other branches
- 8 node_expire.module \node_expire_views_api()
- 6.2 node_expire.module \node_expire_views_api()
- 7.2 node_expire.module \node_expire_views_api()
Implements hook_views_api().
File
- ./
node_expire.module, line 268 - 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'),
);
}