You are here

function extlink_extra_menu in External Links Extra 7

Implementation of hook_menu().

File

./extlink_extra.module, line 57
This module adds some extra functionality to the External Links module.

Code

function extlink_extra_menu() {
  $items['now-leaving'] = array(
    'title' => 'You are about to leave this site',
    // This title will get replaced by tokens.
    'page callback' => 'extlink_extra_leaving_page',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}