created showroom feature

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-25 16:05:07 +02:00
parent 598f3e8292
commit 54399b169a
8 changed files with 263 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
/**
* @file
* showroom.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function showroom_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}