function restful_test_ctools_plugin_directory in RESTful 7
Implements hook_ctools_plugin_directory().
File
- tests/
modules/ restful_test/ restful_test.module, line 11 - Helper module for testing the RESTful module.
Code
function restful_test_ctools_plugin_directory($module, $plugin) {
if ($module == 'restful') {
return 'plugins/' . $plugin;
}
}