You are here

function drupalchat_yui_path in DrupalChat 7.2

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

@todo Please document this function.

See also

http://drupal.org/node/1354

1 string reference to 'drupalchat_yui_path'
drupalchat_uninstall in ./drupalchat.install
@todo Please document this function.

File

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

Code

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