You are here

function me_ctools_plugin_directory in me aliases 6.2

Same name and namespace in other branches
  1. 8 me.module \me_ctools_plugin_directory()
  2. 7 me.module \me_ctools_plugin_directory()

Implementation of CTools hook_ctools_plugin_dierctory().

See http://drupal.org/project/ctools for module and hook information.

File

./me.module, line 771
Provides 'me' aliases to allow users to enter 'me' in common paths instead of their user id.

Code

function me_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'arguments') {
    return 'plugins';
  }
}