You are here

function drupalchat_yui_path in DrupalChat 6

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_yui_path()
  2. 7.2 drupalchat.module \drupalchat_yui_path()
  3. 7 drupalchat.module \drupalchat_yui_path()
1 call to drupalchat_yui_path()
drupalchat_init in ./drupalchat.module
1 string reference to 'drupalchat_yui_path'
drupalchat_init in ./drupalchat.module

File

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

Code

function drupalchat_yui_path($reset = FALSE) {
  static $path;
  if (!isset($path) || $reset) {
    if (!($path = variable_get('drupalchat_yui_path', NULL)) || $reset) {
      $path = drupalchat_library_path('drupalchat_yui_path', '^yui-min\\.js$', 'yui-min.js');
    }
  }
  return $path;
}