You are here

function views_conditional_views_api in Views Conditional 7

Implements hook_views_api().

File

./views_conditional.module, line 30
Views condition is a simple module that allows you to define conditionals (if xxx then yyy) with fields in views. Conditions include:

Code

function views_conditional_views_api() {
  return array(
    'api' => '3',
    'path' => drupal_get_path('module', 'views_conditional') . '/includes/views',
  );
}