function jquery_update_help in jQuery Update 7.3
Same name and namespace in other branches
- 7.2 jquery_update.module \jquery_update_help()
Implements hook_help().
File
- ./
jquery_update.module, line 11 - Updates Drupal to use the latest version of jQuery.
Code
function jquery_update_help($path, $arg) {
switch ($path) {
// Help for another path in the block module.
case 'admin/config/development/jquery_update':
return '<p>' . t('Configure how <a href="@jquery">jQuery</a> behaves on the site. Select which jQuery version, the compression level and whether or not to use a CDN.', array(
'@jquery' => 'http://jquery.com',
)) . '</p>';
}
}