Skip to content

Instantly share code, notes, and snippets.

View flashvnn's full-sized avatar

Huynh Khac Thao flashvnn

View GitHub Profile
/**
* Implements hook_ctools_plugin_api().
*/
function workshop_helper_ctools_plugin_api($module, $api) {
if ($module == "ds" && $api == "ds") {
return array("version" => "1");
}
return NULL;
}