groups/modules/commons/commons_search/commons_search.features.inc
Marton Kiss 8ac59801be Refactor commons build process
Update commons modules to release 7.12, and move the codebase under
modules/commons instead of constant fetching from remote repository.
The commons.make file removed so it is not required to rebuild
groups distribution.

Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
2014-05-28 15:58:33 +02:00

27 lines
536 B
PHP

<?php
/**
* @file
* commons_search.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function commons_search_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "panelizer" && $api == "panelizer") {
return array("version" => "1");
}
list($module, $api) = func_get_args();
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function commons_search_views_api() {
return array("api" => "3.0");
}