panopoly_demo.features.inc in Panopoly Demo 7
File
panopoly_demo.features.incView source
<?php
/**
* @file
* panopoly_demo.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function panopoly_demo_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "page_manager" && $api == "pages_default") {
return array(
"version" => "1",
);
}
}
/**
* Implements hook_views_api().
*/
function panopoly_demo_views_api($module = NULL, $api = NULL) {
return array(
"api" => "3.0",
);
}
Functions
Name | Description |
---|---|
panopoly_demo_ctools_plugin_api | Implements hook_ctools_plugin_api(). |
panopoly_demo_views_api | Implements hook_views_api(). |