You are here

function sharerich_ctools_plugin_directory in Sharerich 7.2

Same name and namespace in other branches
  1. 7.3 sharerich.module \sharerich_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

Telling CTools that we want to define an 'export_ui' plugin.

File

./sharerich.module, line 25

Code

function sharerich_ctools_plugin_directory($module, $type) {

  // Load the export_ui plugin.
  if ($type == 'export_ui') {
    return 'plugins/export_ui';
  }
}