You are here

function beautytips_menu_alter in BeautyTips 6

Implementation of hook_menu_alter()

File

./beautytips.module, line 336
Provides API for adding beautytips to pages. Adds Beautytips settings page and provides some built in functionality.

Code

function beautytips_menu_alter(&$items) {
  if (variable_get('beautytips_drupal_help', FALSE)) {
    $items['admin/help']['page callback'] = 'beautytips_help_main';
  }
}