added social links block

This commit is contained in:
Bachir Soussi Chiadmi
2016-06-13 19:14:58 +02:00
parent 422322c96d
commit 2ca9694d84
478 changed files with 7317 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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");
}
}