This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_ctools_plugin_api(). | |
*/ | |
function workshop_helper_ctools_plugin_api($module, $api) { | |
if ($module == "ds" && $api == "ds") { | |
return array("version" => "1"); | |
} | |
return NULL; | |
} |
NewerOlder