18 lines
360 B
PHP
18 lines
360 B
PHP
<?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");
|
|
}
|
|
}
|