function drupalchat_yui_path in DrupalChat 7
Same name and namespace in other branches
- 6.2 drupalchat.module \drupalchat_yui_path()
- 6 drupalchat.module \drupalchat_yui_path()
- 7.2 drupalchat.module \drupalchat_yui_path()
@todo Please document this function.
See also
1 string reference to 'drupalchat_yui_path'
- drupalchat_uninstall in ./
drupalchat.install - @todo Please document this function.
File
- ./
drupalchat.module, line 1050 - 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$/i', 'yui-min.js');
}
}
return $path;
}