You are here

function colorbox_node_views_api in Colorbox Node 7.2

Same name and namespace in other branches
  1. 7.3 colorbox_node.module \colorbox_node_views_api()

Implements hook_views_api().

File

./colorbox_node.module, line 128
Creates a menu callback with support for displaying a node inside of a colorbox.

Code

function colorbox_node_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'colorbox_node') . '/views',
  );
}