You are here

function drupalchat_library_path in DrupalChat 6.2

Same name and namespace in other branches
  1. 6 drupalchat.module \drupalchat_library_path()
  2. 7.2 drupalchat.module \drupalchat_library_path()
  3. 7 drupalchat.module \drupalchat_library_path()
1 call to drupalchat_library_path()
drupalchat_yui_path in ./drupalchat.module

File

./drupalchat.module, line 784
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);
  variable_set($variable, $path);
  return $path;
}