15 lines
297 B
PHP
15 lines
297 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* frequently_asked_questions.features.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_ctools_plugin_api().
|
|
*/
|
|
function frequently_asked_questions_ctools_plugin_api($module = NULL, $api = NULL) {
|
|
if ($module == "strongarm" && $api == "strongarm") {
|
|
return array("version" => "1");
|
|
}
|
|
}
|