1234567891011121314151617 |
- <?php
- /**
- * @file
- * social_links.features.inc
- */
- /**
- * Implements hook_ctools_plugin_api().
- */
- function social_links_ctools_plugin_api($module = NULL, $api = NULL) {
- if ($module == "context" && $api == "context") {
- return array("version" => "3");
- }
- if ($module == "strongarm" && $api == "strongarm") {
- return array("version" => "1");
- }
- }
|