frequently_asked_questions.features.inc 297 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * frequently_asked_questions.features.inc
  5. */
  6. /**
  7. * Implements hook_ctools_plugin_api().
  8. */
  9. function frequently_asked_questions_ctools_plugin_api($module = NULL, $api = NULL) {
  10. if ($module == "strongarm" && $api == "strongarm") {
  11. return array("version" => "1");
  12. }
  13. }