function current_search_ctools_plugin_directory in Facet API 6.3
Same name and namespace in other branches
- 7.2 contrib/current_search/current_search.module \current_search_ctools_plugin_directory()
- 7 contrib/current_search/current_search.module \current_search_ctools_plugin_directory()
Implements hook_ctools_plugin_directory().
File
- contrib/
current_search/ current_search.module, line 124 - Provides an interface for creating blocks containing information about the current search.
Code
function current_search_ctools_plugin_directory($module, $type) {
if ('ctools' == $module && 'export_ui' == $type) {
return 'plugins/export_ui';
}
if ('current_search' == $module) {
return 'plugins/current_search';
}
}