You are here

function qtip_help in qTip (Stylish jQuery Tooltips) 7.2

Implements hook_help().

File

./qtip.module, line 13

Code

function qtip_help($path, $arg) {
  if ($path == 'admin/config/user-interface/qtip' && module_exists('block')) {
    $text = '<p>' . t('Each qTip instance can be used throughout the site to style a set of tooltips.');
    if (qtip_fetch_default_instance()) {
      $text .= ' ' . t('The bolded instance is currently set as default on the !settings_page.', array(
        '!settings_page' => l('settings page', 'admin/config/user-interface/qtip/settings'),
      ));
    }
    return $text . '</p>';
  }
}