You are here

function drupalchat_library_path in DrupalChat 7

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_library_path()
  2. 6 drupalchat.module \drupalchat_library_path()
  3. 7.2 drupalchat.module \drupalchat_library_path()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 call to drupalchat_library_path()
drupalchat_yui_path in ./drupalchat.module
@todo Please document this function.

File

./drupalchat.module, line 1039
Module code for DrupalChat.

Code

function drupalchat_library_path($variable, $match, $filename) {
  module_load_include('inc', 'drupalchat', 'includes/drupalchat.admin');
  $path = _drupalchat_autodiscover_path($match, $filename);

  //echo $path;
  variable_set($variable, $path);
  return $path;
}