You are here

workflow_views.module in Workflow 6.2

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.module
View 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

Namesort descending Description
workflow_views_perm Implements hook_permission().
workflow_views_views_api Implements hook_views_api().