enterprise_base.features.inc in Enterprise Base 7
Same filename and directory in other branches
File
enterprise_base.features.incView source
<?php
/**
* @file
* enterprise_base.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function enterprise_base_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "strongarm" && $api == "strongarm") {
return array(
"version" => "1",
);
}
}
/**
* Implements hook_views_api().
*/
function enterprise_base_views_api() {
list($module, $api) = func_get_args();
if ($module == "views" && $api == "views_default") {
return array(
"version" => "3.0",
);
}
}
Functions
Name![]() |
Description |
---|---|
enterprise_base_ctools_plugin_api | Implements hook_ctools_plugin_api(). |
enterprise_base_views_api | Implements hook_views_api(). |