drupal_not_found

Versions
mediamosa-21
drupal_not_found()

Deliver a "page not found" error to the browser.

Page callback functions wanting to report a "page not found" message should return MENU_NOT_FOUND instead of calling drupal_not_found(). However, functions that are invoked in contexts where that return value might not bubble up to menu_execute_active_handler() should call drupal_not_found().

▾ 16 functions call drupal_not_found()

book_export in modules/book/book.pages.inc
Menu callback; Generates various representation of a book page and its children.
comment_permalink in modules/comment/comment.module
Redirects comment links to the correct page depending on comment settings.
contact_site_form in modules/contact/contact.pages.inc
Form builder; the site-wide contact form.
devel_display_source in sites/all/modules/devel/devel.module
Page callback to display syntax hilighted source code
file_download in includes/file.inc
Menu handler for private file transfers.
file_transfer in includes/file.inc
Transfer file using HTTP to client.
locale_languages_delete_form in modules/locale/locale.admin.inc
User interface for the language deletion confirmation screen.
locale_languages_edit_form in modules/locale/locale.admin.inc
Editing screen for a particular language.
locale_translate_delete_page in modules/locale/locale.admin.inc
String deletion confirmation page.
profile_browse in modules/profile/profile.pages.inc
Menu callback; display a list of user information.
profile_field_delete in modules/profile/profile.admin.inc
Menu callback; deletes a field from all user profiles.
profile_field_form in modules/profile/profile.admin.inc
Menu callback: Generate a form to add/edit a user profile field.
statistics_access_log in modules/statistics/statistics.admin.inc
Menu callback; Displays recent page accesses.
statistics_node_tracker in modules/statistics/statistics.pages.inc
statistics_user_tracker in modules/statistics/statistics.pages.inc
system_main_admin_page in modules/system/system.admin.inc
Menu callback; Provide the administration overview page.

Code

includes/common.inc, line 700

<?php
function drupal_not_found() {
  drupal_deliver_page(MENU_NOT_FOUND);
}
?>