You are here

protected_node_views.module in Protected Node 1.0.x

Same filename and directory in other branches
  1. 7 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

Namesort descending Description
protected_node_views_views_api Implements hook_views_api().