You are here

function match_redirect_url_exists in Url Redirect 7

Checks if current page is registered as a menu item (exists).

Return value

bool Whether or not the menu item was found.

File

./url_redirect.module, line 78
Adds URL Redirect and UI to set paths to redirect.

Code

function match_redirect_url_exists() {
  return (bool) menu_get_item();
}