workflow_views.module in Workflow 6
Same filename and directory in other branches
Provide views integration for workflows. Why it's own module? Some sites have views some don't, all prefer a lower code footprint and better performance.
File
workflow_views/workflow_views.moduleView source
<?php
// $Id$
/**
* @file
* Provide views integration for workflows.
* Why it's own module? Some sites have views some don't,
* all prefer a lower code footprint and better performance.
*/
/**
* Implements hook_permission().
*/
function workflow_views_perm() {
return array(
'access workflow summary views',
);
}
/**
* Implements hook_views_api().
*/
function workflow_views_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'workflow_views') . '/includes',
);
}
Functions
Name | Description |
---|---|
workflow_views_perm | Implements hook_permission(). |
workflow_views_views_api | Implements hook_views_api(). |