popsu-d7/sites/default/modules/features/popsu_structure/popsu_structure.features.inc
2018-09-07 10:54:01 +02:00

24 lines
541 B
PHP

<?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");
}
}