You are here

function currency_ctools_plugin_directory in Currency 7.2

Implements hook_ctools_plugin_directory().

File

currency/currency.module, line 212
Provides currency information and allows users to add custom currencies.

Code

function currency_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'export_ui') {
    return 'ctools/plugins/' . $plugin;
  }
}