1234567891011121314151617181920212223 |
- <?php
- /**
- * @file
- * popsu_structure.features.inc
- */
- /**
- * Implements hook_ctools_plugin_api().
- */
- function popsu_structure_ctools_plugin_api($module = NULL, $api = NULL) {
- if ($module == "boxes" && $api == "box") {
- return array("version" => "1");
- }
- if ($module == "context" && $api == "context") {
- return array("version" => "3");
- }
- if ($module == "panels" && $api == "layouts") {
- return array("version" => "1");
- }
- if ($module == "strongarm" && $api == "strongarm") {
- return array("version" => "1");
- }
- }
|