You are here

protected_node_views.module in Protected Node 7

Same filename and directory in other branches
  1. 1.0.x protected_node_views/protected_node_views.module

Declare the view API in use.

File

protected_node_views/protected_node_views.module
View source
<?php

/**
 * @file
 * Declare the view API in use.
 */

/**
 * Implements hook_views_api().
 */
function protected_node_views_views_api() {
  return array(
    'api' => 2,
  );
}

Functions