root / drupal7 / sites / all / modules / flag / flag_bookmark / flag_bookmark.module @ 4cfd8be6
1 |
<?php |
---|---|
2 |
|
3 |
/** |
4 |
* @file |
5 |
* The Flag bookmark module. |
6 |
* |
7 |
* This module creates a default Flag and associated views when enabled. The |
8 |
* content is intended to be an example and may be deleted afterward. |
9 |
*/ |
10 |
|
11 |
/** |
12 |
* Implements hook_views_api(). |
13 |
*/ |
14 |
function flag_bookmark_views_api() { |
15 |
return array( |
16 |
'api' => 2.0, |
17 |
'path' => drupal_get_path('module', 'flag_bookmark') . '/includes', |
18 |
); |
19 |
} |