popsu_structure.features.inc 541 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * popsu_structure.features.inc
  5. */
  6. /**
  7. * Implements hook_ctools_plugin_api().
  8. */
  9. function popsu_structure_ctools_plugin_api($module = NULL, $api = NULL) {
  10. if ($module == "boxes" && $api == "box") {
  11. return array("version" => "1");
  12. }
  13. if ($module == "context" && $api == "context") {
  14. return array("version" => "3");
  15. }
  16. if ($module == "panels" && $api == "layouts") {
  17. return array("version" => "1");
  18. }
  19. if ($module == "strongarm" && $api == "strongarm") {
  20. return array("version" => "1");
  21. }
  22. }