social_links.features.inc 360 B

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