You are here

flag_bookmark.module in Flag 7.3

The Flag bookmark module.

This module creates a default Flag and associated views when enabled. The content is intended to be an example and may be deleted afterward.

File

flag_bookmark/flag_bookmark.module
View source
<?php

/**
 * @file
 * The Flag bookmark module.
 *
 * This module creates a default Flag and associated views when enabled. The
 * content is intended to be an example and may be deleted afterward.
 */

/**
 * Implements hook_views_api().
 */
function flag_bookmark_views_api() {
  return array(
    'api' => 2.0,
    'path' => drupal_get_path('module', 'flag_bookmark') . '/includes',
  );
}

Functions

Namesort descending Description
flag_bookmark_views_api Implements hook_views_api().