You are here

function theme_beautytips_drupal_help_more_help_link in BeautyTips 6.2

Same name and namespace in other branches
  1. 8 includes/drupal_help.inc \theme_beautytips_drupal_help_more_help_link()
  2. 7.2 includes/drupal_help.inc \theme_beautytips_drupal_help_more_help_link()

Returns code that emits the 'more help'-link. Overrides theme_more_help_link

1 string reference to 'theme_beautytips_drupal_help_more_help_link'
beautytips_drupal_help_theme_change in includes/drupal_help.inc
Implementation of hook_theme_registry_alter

File

includes/drupal_help.inc, line 77

Code

function theme_beautytips_drupal_help_more_help_link($url) {
  $options = array();
  $options['bt_drupal_help'] = array(
    'cssSelect' => '.more-help-link a',
    'ajaxPath' => array(
      0 => "\$(this).attr('href')",
      1 => '.clear-block p',
    ),
    'trigger' => array(
      0 => 'mouseover',
      1 => 'click',
    ),
    'width' => 350,
  );
  beautytips_add_beautytips($options);
  return theme_more_help_link($url);
}