diff --git a/core/includes/ajax.inc b/core/includes/ajax.inc index 8683ff9df73e0cdbbd74290ef0797cceb7bab1b7..8817356d1822064e0a3ec4fc8a58ed9dd18dc85c 100644 --- a/core/includes/ajax.inc +++ b/core/includes/ajax.inc @@ -351,8 +351,6 @@ function ajax_get_form() { /** * Page callback: Handles Ajax requests for the #ajax Form API property. * - * Path: system/ajax - * * This rebuilds the form from cache and invokes the defined #ajax['callback'] * to return an Ajax command structure for JavaScript. In case no 'callback' has * been defined, nothing will happen. @@ -388,11 +386,6 @@ function ajax_form_callback() { /** * Theme callback: Returns the correct theme for an Ajax request. * - * Paths: - * - system/ajax - * - file/ajax - * - file/progress - * * Many different pages can invoke an Ajax request to system/ajax or another * generic Ajax path. It is almost always desired for an Ajax response to be * rendered using the same theme as the base page, because most themes are built diff --git a/core/modules/aggregator/aggregator.admin.inc b/core/modules/aggregator/aggregator.admin.inc index a728920a660cb163683f3557c297f83b5ce96595..e2c946d40d53f7f16ae83b84efe14f58ecd1254b 100644 --- a/core/modules/aggregator/aggregator.admin.inc +++ b/core/modules/aggregator/aggregator.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Displays the aggregator administration page. * - * Path: admin/config/services/aggregator - * * @see aggregator_menu() */ function aggregator_admin_overview() { @@ -59,8 +57,6 @@ function aggregator_view() { /** * Form constructor for adding and editing feed sources. * - * Path: admin/config/services/aggregator/add/feed - * * @param $feed * If editing a feed, the feed to edit as a PHP stdClass value; if adding a * new feed, NULL. @@ -215,8 +211,6 @@ function aggregator_form_feed_submit($form, &$form_state) { /** * Page callback: Deletes a feed. * - * Path: admin/config/services/aggregator/remove/%aggregator_feed - * * @param $feed * An associative array describing the feed to be cleared. * @@ -252,8 +246,6 @@ function aggregator_admin_remove_feed_submit($form, &$form_state) { /** * Form constructor for importing feeds from OPML. * - * Path: admin/config/services/aggregator/add/opml - * * @ingroup forms * @see aggregator_menu() * @see aggregator_form_opml_validate() @@ -413,8 +405,6 @@ function _aggregator_parse_opml($opml) { /** * Page callback: Refreshes a feed, then redirects to the overview page. * - * Path: admin/config/services/aggregator/update/%aggregator_feed - * * @param $feed * An object describing the feed to be refreshed. * @@ -431,8 +421,6 @@ function aggregator_admin_refresh_feed($feed) { /** * Form constructor for the aggregator system settings. * - * Path: admin/config/services/aggregator/settings - * * @see aggregator_menu() * @see aggregator_admin_form_submit() * @ingroup forms @@ -555,8 +543,6 @@ function aggregator_admin_form_submit($form, &$form_state) { /** * Form constructor to add/edit/delete aggregator categories. * - * Path: admin/config/services/aggregator/add/category - * * @param $edit * An associative array containing: * - title: A string to use for the category title. diff --git a/core/modules/aggregator/aggregator.module b/core/modules/aggregator/aggregator.module index 81b8c7f334e61bd07d64084185482960f05f02ca..7b65dfa83a1299ae7a359052f27c89b1b7adb4ca 100644 --- a/core/modules/aggregator/aggregator.module +++ b/core/modules/aggregator/aggregator.module @@ -268,8 +268,6 @@ function aggregator_menu() { /** * Title callback: Returns a title for aggregatory category pages. * - * Path: aggregator/categories/%aggregator_category - * * @param $category * An aggregator category. * @@ -283,8 +281,6 @@ function _aggregator_category_title($category) { /** * Access callback: Determines whether there are any aggregator categories. * - * Path: aggregator/categories - * * @return * TRUE if there is at least one category and the user has access to them; * FALSE otherwise. diff --git a/core/modules/aggregator/aggregator.pages.inc b/core/modules/aggregator/aggregator.pages.inc index 353eedca796eced11848e5bb7485332608f790f9..9ca6df5279f85beefe9cd2d4577a9ecdf426ef7d 100644 --- a/core/modules/aggregator/aggregator.pages.inc +++ b/core/modules/aggregator/aggregator.pages.inc @@ -8,8 +8,6 @@ /** * Page callback: Displays the most recent items gathered from any feed. * - * Path: aggregator - * * @see aggregator_menu() */ function aggregator_page_last() { @@ -23,8 +21,6 @@ function aggregator_page_last() { /** * Page callback: Displays all the items captured from a particular feed. * - * Path: aggregator/sources/%aggregator_feed - * * @param $feed * The feed for which to display all items. * @@ -44,8 +40,6 @@ function aggregator_page_source($feed) { /** * Form constructor to show all items captured from a feed. * - * Path: aggregator/sources/%aggregator_feed/categorize - * * @param $feed * The feed for which to list all the aggregated items. * @@ -60,8 +54,6 @@ function aggregator_page_source_form($form, $form_state, $feed) { /** * Form constructor to list items aggregated in a category. * - * Path: aggregator/categories - * * @param $category * The category for which to list all the aggregated items. * @@ -81,8 +73,6 @@ function aggregator_page_category($category) { /** * Form constructor to list items aggregated in a category. * - * Path: aggregator/categories/%aggregator_category/categorize - * * @param $category * The category for which to list all the aggregated items. * @@ -342,8 +332,6 @@ function template_preprocess_aggregator_item(&$variables) { /** * Page callback: Displays all the feeds used by the aggregator. * - * Path: aggregator/sources - * * @see aggregator_menu() */ function aggregator_page_sources() { @@ -370,8 +358,6 @@ function aggregator_page_sources() { /** * Page callback: Displays all the categories used by the aggregator. * - * Path: aggregator/categories - * * @see aggregator_menu() */ function aggregator_page_categories() { @@ -396,8 +382,6 @@ function aggregator_page_categories() { /** * Page callback: Generates an RSS 0.92 feed of aggregator items or categories. * - * Path: aggregator/rss - * * @see aggregator_menu() */ function aggregator_page_rss() { @@ -468,8 +452,6 @@ function theme_aggregator_page_rss($variables) { /** * Page callback: Generates an OPML representation of all feeds. * - * Path: aggregator/opml - * * @param $cid * If set, feeds are exported only from a category with this ID. Otherwise, * all feeds are exported. diff --git a/core/modules/block/block.admin.inc b/core/modules/block/block.admin.inc index e383e71537605b8c308c0ed6b2fba15862a145cd..8a5553d400537ed4f85b3a56e499f43b53efee80 100644 --- a/core/modules/block/block.admin.inc +++ b/core/modules/block/block.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Attaches CSS for the block region demo. * - * Path: admin/structure/block/demo/% (for each theme) - * * @see block_menu() */ function block_admin_demo($theme = NULL) { @@ -20,8 +18,6 @@ function block_admin_demo($theme = NULL) { /** * Page callback: Shows the block administration page. * - * Path: admin/structure/block - * * @param $theme * The theme to display the administration page for. If not provided, defaults * to the currently used theme. @@ -257,8 +253,6 @@ function _block_compare($a, $b) { /** * Form constructor for the block configuration form. * - * Path: admin/structure/block/manage/%/% - * * Also used by block_add_block_form() for adding a new custom block. * * @param $module @@ -539,8 +533,6 @@ function block_admin_configure_submit($form, &$form_state) { /** * Form constructor for the add block form. * - * Path: admin/structure/block/add - * * @see block_menu() * @see block_add_block_form_validate() * @see block_add_block_form_submit() @@ -632,8 +624,6 @@ function block_add_block_form_submit($form, &$form_state) { /** * Form constructor for the custom block deletion form. * - * Path: admin/structure/block/manage/%/%/delete - * * @param $module * The name of the module that implements the block to be deleted. This should * always equal 'block' since it only allows custom blocks to be deleted. diff --git a/core/modules/block/block.module b/core/modules/block/block.module index edf27f69e72282a3fb20db6addce53caea889a60..b13a8525f7f69eb6e6c03fddca6bd02c22cff579 100644 --- a/core/modules/block/block.module +++ b/core/modules/block/block.module @@ -195,8 +195,6 @@ function _block_themes_access($theme) { /** * Theme callback: Uses the theme specified in the parameter. * - * Path: admin/structure/block/demo/% (for each theme) - * * @param $theme * The theme whose blocks are being configured. If not set, the default theme * is assumed. diff --git a/core/modules/book/book.admin.inc b/core/modules/book/book.admin.inc index e37c7fc6d05a454d4ad237b6f1d16731750b5435..132f2c619094c8b8c152ec42787d22ab41631c7e 100644 --- a/core/modules/book/book.admin.inc +++ b/core/modules/book/book.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Returns an administrative overview of all books. * - * Path: admin/content/book - * * @see book_menu() */ function book_admin_overview() { @@ -28,8 +26,6 @@ function book_admin_overview() { /** * Form constructor for the book settings form. * - * Path: admin/content/book/settings - * * @see book_menu() * @see book_admin_settings_validate() * @ingroup forms @@ -70,8 +66,6 @@ function book_admin_settings_validate($form, &$form_state) { /** * Form constructor for administering a single book's hierarchy. * - * Path: admin/content/book/%node - * * @param $node * The node of the top-level page in the book. * diff --git a/core/modules/book/book.module b/core/modules/book/book.module index c4fa615202c15605d0cf97ba6d9da2b82b98dd34..282fb46c02ea256e36f80bd7d33209afd4a520ce 100644 --- a/core/modules/book/book.module +++ b/core/modules/book/book.module @@ -213,8 +213,6 @@ function _book_outline_access($node) { /** * Access callback: Determines if the user can remove nodes from the outline. * - * Path: node/%node/outline/remove - * * @param $node * The node to remove from the outline. * diff --git a/core/modules/book/book.pages.inc b/core/modules/book/book.pages.inc index 98282be6d055d734e0f1cf8bfe07823560d33bbe..4fab6dc42e63898a585a265593a063e9e82bb2fd 100644 --- a/core/modules/book/book.pages.inc +++ b/core/modules/book/book.pages.inc @@ -8,8 +8,6 @@ /** * Page callback: Prints a listing of all books. * - * Path: book - * * @see book_menu() */ function book_render() { @@ -24,8 +22,6 @@ function book_render() { /** * Page callback: Generates representations of a book page and its children. * - * Path: book/export/%/% - * * The function delegates the generation of output to helper functions. The * function name is derived by prepending 'book_export_' to the given output * type. So, e.g., a type of 'html' results in a call to the function @@ -97,8 +93,6 @@ function book_export_html($nid) { /** * Page callback: Shows the outline form for a single node. * - * Path: node/%node/outline - * * @param $node * The book node for which to show the outline. * @@ -203,8 +197,6 @@ function book_outline_form_submit($form, &$form_state) { /** * Form constructor to confirm removal of a node from a book. * - * Path: node/%node/outline/remove - * * @param $node * The node to delete. * diff --git a/core/modules/comment/comment.admin.inc b/core/modules/comment/comment.admin.inc index 550de56852dc7b792c6d5017859ada9da7dc9040..d00e5f944ddbc4c86f95dfacf4337494d3a5db6d 100644 --- a/core/modules/comment/comment.admin.inc +++ b/core/modules/comment/comment.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Presents an administrative comment listing. * - * Path: admin/content/comment - * * @param $type * The type of the overview form ('approval' or 'new'). See * comment_admin_overview() for details. @@ -250,8 +248,6 @@ function comment_multiple_delete_confirm_submit($form, &$form_state) { /** * Page callback: Shows a confirmation page for comment deletions. * - * Path: comment/%/delete - * * @param $cid * The ID of the comment that is about to be deleted. * diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 9ad7cfcfece4c6a6c80be7e00a779d8c03501c9f..3954119f2bb7ebc8323f9ffc643dd437bf975906 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -1643,8 +1643,6 @@ function comment_get_display_page($cid, $node_type) { /** * Page callback: Displays the comment editing form. * - * Path: comment/%comment/edit - * * @param $comment * The comment object representing the comment to be edited. * diff --git a/core/modules/comment/comment.pages.inc b/core/modules/comment/comment.pages.inc index 5e3d9de40bd11fdb691b36f1fbb75cd244b31dc9..344e75717b72ecee6fc2deb90b70b0b1ee2c1846 100644 --- a/core/modules/comment/comment.pages.inc +++ b/core/modules/comment/comment.pages.inc @@ -102,8 +102,6 @@ function comment_reply($node, $pid = NULL) { /** * Page callback: Publishes the specified comment. * - * Path: comment/%/approve - * * @param $cid * A comment identifier. * diff --git a/core/modules/contact/contact.admin.inc b/core/modules/contact/contact.admin.inc index 4a8ee39556d72cf8c62cab0326b5c07a8699e891..7b1c90b1a525b35023eb860554b74fd50306b100 100644 --- a/core/modules/contact/contact.admin.inc +++ b/core/modules/contact/contact.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Lists contact categories. * - * Path: admin/structure/contact - * * @see contact_menu() */ function contact_category_list() { @@ -59,10 +57,6 @@ function contact_category_list() { /** * Form constructor for the category edit form. * - * Paths: - * - admin/structure/contact/add - * - admin/structure/contact/edit/%contact - * * @param $category * An array describing the category to be edited. May be empty for new * categories. Recognized array keys are: @@ -197,8 +191,6 @@ function contact_category_edit_form_submit($form, &$form_state) { /** * Form constructor for the contact category deletion form. * - * Path: admin/structure/contact/delete/%contact - * * @param $contact * Array describing the contact category to be deleted. See the documentation * of contact_category_edit_form() for the recognized keys. diff --git a/core/modules/contact/contact.module b/core/modules/contact/contact.module index 2858e494a4787e2ce9bdb83c906bb3b48441ed32..abc1c6c9a84d67eb1307e6c2d19e408fd505d34b 100644 --- a/core/modules/contact/contact.module +++ b/core/modules/contact/contact.module @@ -109,8 +109,6 @@ function contact_menu() { /** * Access callback: Checks access for a user's personal contact form. * - * Path: user/%user/contact - * * @param $account * The user object of the user whose contact form is being requested. * diff --git a/core/modules/contact/contact.pages.inc b/core/modules/contact/contact.pages.inc index f17acdf32ad3ff4f919655726aa89139538221ab..289e38b7a2a8b233a3d21c89e245ed49e535bf3e 100644 --- a/core/modules/contact/contact.pages.inc +++ b/core/modules/contact/contact.pages.inc @@ -8,8 +8,6 @@ /** * Form constructor for the site-wide contact form. * - * Path: contact - * * @see contact_menu() * @see contact_site_form_validate() * @see contact_site_form_submit() @@ -176,8 +174,6 @@ function contact_site_form_submit($form, &$form_state) { /** * Form constructor for the personal contact form. * - * Path: user/%user/contact - * * @see contact_menu() * @see contact_personal_form_validate() * @see contact_personal_form_submit() diff --git a/core/modules/field_ui/field_ui.admin.inc b/core/modules/field_ui/field_ui.admin.inc index 5457120dfa0a72bdfcfdedf323044607137c9002..cec0d842ca958324c31f0691cc487310d543b54a 100644 --- a/core/modules/field_ui/field_ui.admin.inc +++ b/core/modules/field_ui/field_ui.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Lists all defined fields for quick reference. * - * Path: admin/reports/fields - * * @see field_ui_menu() */ function field_ui_fields_list() { @@ -287,9 +285,6 @@ function theme_field_ui_table($variables) { /** * Form constructor for the 'Manage fields' form of a bundle. * - * Path: BUNDLE_ADMIN_PATH/fields, where BUNDLE_ADMIN_PATH is the path stored in - * the ['admin']['info'] property in the return value of hook_entity_info(). - * * The resulting form allows fields and pseudo-fields to be re-ordered. * * @see field_ui_menu() @@ -880,12 +875,6 @@ function field_ui_field_overview_form_submit($form, &$form_state) { /** * Form constructor for the field display settings for a given view mode. * - * Paths: - * - BUNDLE_ADMIN_PATH/display - * - BUNLDE_ADMIN_PATH/display/%view_mode - * where BUNDLE_ADMIN_PATH is the path stored in the ['admin']['info'] property - * in the return value of hook_entity_info(). - * * @see field_ui_menu() * @see field_ui_display_overview_multistep_submit() * @see field_ui_display_overview_form_submit() @@ -1568,10 +1557,6 @@ function field_ui_existing_field_options($entity_type, $bundle) { /** * Form constructor for the field settings edit page. * - * Path: BUNDLE_ADMIN_PATH/fields/%field/field-settings, where BUNDLE_ADMIN_PATH - * is the path stored in the ['admin']['info'] property - * in the return value of hook_entity_info(). - * * @see field_ui_menu() * @see field_ui_settings_form_submit() * @ingroups forms @@ -1657,10 +1642,6 @@ function field_ui_field_settings_form_submit($form, &$form_state) { /** * Form constructor for the widget selection form. * - * Path: BUNDLE_ADMIN_PATH/fields/%field/widget-type, where BUNDLE_ADMIN_PATH is - * the path stored in the ['admin']['info'] property in the return value of - * hook_entity_info(). - * * @see field_ui_menu() * @see field_ui_widget_type_form_submit() * @ingroup forms @@ -1739,10 +1720,6 @@ function field_ui_widget_type_form_submit($form, &$form_state) { /** * Form constructor for removing a field instance from a bundle. * - * Path: BUNDLE_ADMIN_PATH/fields/%field/delete, where BUNDLE_ADMIN_PATH is the - * path stored in the ['admin']['info'] property in the return value of - * hook_entity_info(). - * * @see field_ui_menu() * @see field_ui_field_delete_form_submit() * @ingroup forms @@ -1814,12 +1791,6 @@ function field_ui_field_delete_form_submit($form, &$form_state) { /** * Form constructor for the field instance settings form. * - * Paths: - * - BUNDLE_ADMIN_PATH/fields/%field - * - BUNDLE_ADMIN_PATH/fields/%field/edit - * where BUNDLE_ADMIN_PATH is the path stored in the ['admin']['info'] property - * in the return value of hook_entity_info(). - * * @see field_ui_menu() * @see field_ui_field_edit_form_validate() * @see field_ui_field_edit_form_submit() diff --git a/core/modules/field_ui/field_ui.module b/core/modules/field_ui/field_ui.module index ab807dc36b4ae29ac7c7637468d3a74996844e7d..5ca938f5daa39d9e24cd8b2fb958d0c0de93b1f8 100644 --- a/core/modules/field_ui/field_ui.module +++ b/core/modules/field_ui/field_ui.module @@ -239,10 +239,6 @@ function field_ui_menu_load($field_name, $entity_type, $bundle_name, $bundle_pos /** * Title callback: Returns the name of a given instance. * - * Path: BUNDLE_ADMIN_PATH/fields/%field, where BUNDLE_ADMIN_PATH is the path - * stored in the ['admin']['info'] property in the return value of - * hook_entity_info(). - * * @see field_ui_menu() */ function field_ui_menu_title($instance) { @@ -252,9 +248,6 @@ function field_ui_menu_title($instance) { /** * Access callback: Checks access for the 'view mode display settings' pages. * - * Path: BUNDLE_ADMIN_PATH/display, where BUNDLE_ADMIN_PATH is the path stored - * in the ['admin']['info'] property in the return value of hook_entity_info(). - * * @see field_ui_menu() */ function _field_ui_view_mode_menu_access($entity_type, $bundle, $view_mode, $access_callback) { diff --git a/core/modules/file/file.module b/core/modules/file/file.module index c9518074221ed34f1820224087ba9c129ac1d031..078a245442852242f779adbddfb6059bc50b1f32 100644 --- a/core/modules/file/file.module +++ b/core/modules/file/file.module @@ -225,8 +225,6 @@ function file_file_download($uri, $field_type = 'file') { /** * Ajax callback: Processes file uploads and deletions. * - * Path: file/ajax - * * This rebuilds the form element for a particular field item. As long as the * form processing is properly encapsulated in the widget element the form * should rebuild correctly using FAPI without the need for additional callbacks @@ -292,8 +290,6 @@ function file_ajax_upload() { /** * Ajax callback: Retrieves upload progress. * - * Path: file/progress - * * @param $key * The unique key for this upload process. */ diff --git a/core/modules/file/tests/file_module_test.module b/core/modules/file/tests/file_module_test.module index 48ba87b4d91d2bef374c3a14915a892d93f0565c..d75e929dc09f4f4b54bb3794deb98ad10a5fde13 100644 --- a/core/modules/file/tests/file_module_test.module +++ b/core/modules/file/tests/file_module_test.module @@ -24,8 +24,6 @@ function file_module_test_menu() { /** * Form constructor for testing a 'managed_file' element. * - * Path: file/test - * * @see file_module_test_menu() * @see file_module_test_form_submit() * @ingroup forms diff --git a/core/modules/help/help.admin.inc b/core/modules/help/help.admin.inc index b37819b9a7dba28a3484c3bbd0b3a25897311174..81cd2244092f5833a3f79daa0f6e46d345a2bf27 100644 --- a/core/modules/help/help.admin.inc +++ b/core/modules/help/help.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Prints a page listing a glossary of Drupal terminology. * - * Path: admin/help - * * @see help_menu() */ function help_main() { @@ -22,8 +20,6 @@ function help_main() { /** * Page callback: Prints a page listing general help for a module. * - * Path: admin/help/% - * * @param $name * A module name to display a help page for. * diff --git a/core/modules/node/content_types.inc b/core/modules/node/content_types.inc index e2440d3d08b355de8815215416a3449337027181..b85cb370eb26eadf041d009dfce31ba5e853dadf 100644 --- a/core/modules/node/content_types.inc +++ b/core/modules/node/content_types.inc @@ -8,8 +8,6 @@ /** * Page callback: Displays the content type admin overview page. * - * Path: admin/structure/types - * * @see node_menu() */ function node_overview_types() { @@ -423,8 +421,6 @@ function node_type_reset($type) { /** * Page callback: Form constructor for the content type delete form. * - * Path: admin/structure/types/manage/%node_type/delete - * * @param $type * Content type object. * diff --git a/core/modules/node/node.admin.inc b/core/modules/node/node.admin.inc index 9578417dfeb87ebd4dd393e2a6c66ace725a54b5..d78ebf7588cea26bdbc2f207561dc0a6686499e2 100644 --- a/core/modules/node/node.admin.inc +++ b/core/modules/node/node.admin.inc @@ -8,8 +8,6 @@ /** * Page callback: Form constructor for the permission rebuild confirmation form. * - * Path: admin/reports/status/rebuild - * * @see node_menu() * @see node_configure_rebuild_confirm_submit() */ @@ -372,8 +370,6 @@ function _node_mass_update_batch_finished($success, $results, $operations) { /** * Page callback: Form constructor for the content administration form. * - * Path: admin/content - * * @see node_multiple_delete_confirm() * @see node_multiple_delete_confirm_submit() * @see node_admin_nodes() diff --git a/core/modules/node/node.module b/core/modules/node/node.module index c2259d651cccdb5f509c0468549a5a5fa1e08b11..5cb80789826c552e36249caa5cda8e39cd121f8c 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -1447,8 +1447,6 @@ function node_build_content($node, $view_mode = 'full', $langcode = NULL) { /** * Page callback: Generates an array which displays a node detail page. * - * Path: node/%node/revisions/%/view - * * @param $node * A node object. * @param $message @@ -1906,12 +1904,6 @@ function theme_node_search_admin($variables) { /** * Access callback: Checks node revision access. * - * Paths: - * - node/%node/revisions - * - node/%node/revisions/%/view - * - node/%node/revisions/%/revert - * - node/%node/revisions/%/delete - * * @param $node * The node to check. * @param $op @@ -1959,8 +1951,6 @@ function _node_revision_access($node, $op = 'view') { /** * Access callback: Checks whether the user has permission to add a node. * - * Paths: node/add - * * @return * TRUE if the user has permission, otherwise FALSE. * @@ -2182,8 +2172,6 @@ function node_menu_local_tasks_alter(&$data, $router_item, $root_path) { /** * Title callback: Provides the title for a node type edit form. * - * Path: admin/structure/types/manage/%node_type - * * @param $type * The node type object. * @@ -2196,8 +2184,6 @@ function node_type_page_title($type) { /** * Title callback: Displays the node's title. * - * Path: node/%node - * * @param $node * The node object. * @@ -2562,8 +2548,6 @@ function node_block_list_alter(&$blocks) { /** * Page callback: Generates and prints an RSS feed. * - * Path: rss.xml - * * Generates an RSS feed from an array of node IDs, and prints it with an HTTP * header, with Content Type set to RSS/XML. * @@ -2682,8 +2666,6 @@ function node_view_multiple($nodes, $view_mode = 'teaser', $weight = 0, $langcod /** * Page callback: Generates a listing of promoted nodes. * - * Path: node - * * @see node_menu() */ function node_page_default() { @@ -2736,8 +2718,6 @@ function node_page_default() { /** * Page callback: Displays a single node. * - * Path: node/%node - * * @param $node * The node object. * @@ -2988,12 +2968,6 @@ function node_form_system_themes_admin_form_submit($form, &$form_state) { /** * Access callback: Checks a user's permission for performing a node operation. * - * Paths: - * - node/%node - * - node/%node/edit - * - node/%node/delete - * - 'node/add/' . $type_url_str (part of foreach) - * * @param $op * The operation to be performed on the node. Possible values are: * - "view" diff --git a/core/modules/node/node.pages.inc b/core/modules/node/node.pages.inc index 95e2e7dc9c3c91763f9b4c225514bf52da578a27..30d4164ad62be0f189b643611e97a73d03ea62a6 100644 --- a/core/modules/node/node.pages.inc +++ b/core/modules/node/node.pages.inc @@ -13,8 +13,6 @@ /** * Page callback: Presents the node editing form. * - * Path: node/%node/edit - * * @see node_menu() */ function node_page_edit($node) { @@ -26,8 +24,6 @@ function node_page_edit($node) { /** * Page callback: Presents the node add form. * - * Path: node/add - * * @see node_menu() */ function node_add_page() { @@ -73,8 +69,6 @@ function theme_node_add_list($variables) { /** * Page callback: Provides the node submission form. * - * Path: 'node/add/' . $type_url_str (part of a foreach) - * * @param $type * The node type for the submitted node. * @@ -559,8 +553,6 @@ function node_form_submit_build_node($form, &$form_state) { /** * Page callback: Form constructor for node deletion confirmation form. * - * Path: node/%node/delete - * * @see node_menu() */ function node_delete_confirm($form, &$form_state, $node) { @@ -593,8 +585,6 @@ function node_delete_confirm_submit($form, &$form_state) { /** * Page callback: Generates an overview table of older revisions of a node. * - * Path: node/%node/revisions - * * @see node_menu() */ function node_revision_overview($node) { @@ -648,8 +638,6 @@ function node_revision_overview($node) { /** * Page callback: Form constructor for the reversion confirmation form. * - * Path: node/%node/revisions/%/revert - * * This form prevents against CSRF attacks. * * @see node_menu() @@ -678,8 +666,6 @@ function node_revision_revert_confirm_submit($form, &$form_state) { /** * Page callback: Form constructor for the revision deletion confirmation form. * - * Path: node/%node/revisions/%/delete - * * This form prevents against CSRF attacks. * * @see node_menu() diff --git a/core/modules/node/tests/node_access_test.module b/core/modules/node/tests/node_access_test.module index c17f07ebf6d86b3625227f0015c5e4eaae5caa24..c1e7edda14763959109f6e30ed5d3329acfdb7e9 100644 --- a/core/modules/node/tests/node_access_test.module +++ b/core/modules/node/tests/node_access_test.module @@ -87,8 +87,6 @@ function node_access_test_menu() { /** * Page callback: Creates the node access test page. * - * Path: node_access_test_page - * * Page should say "No nodes" if there are no nodes, and "Yes, # nodes" (with * the number filled in) if there were nodes the user could access. Also, the * database query is shown, and a list of the node IDs, for debugging purposes. @@ -131,8 +129,6 @@ function node_access_test_page() { /** * Page callback: Creates the node access entity test page. * - * Path: node_access_entity_test_page - * * Page should say "No nodes" if there are no nodes, and "Yes, # nodes" (with * the number filled in) if there were nodes the user could access. Also, the * database query is shown, and a list of the node IDs, for debugging purposes. diff --git a/core/modules/taxonomy/taxonomy.pages.inc b/core/modules/taxonomy/taxonomy.pages.inc index e1b47a964de14c35067bb4deb1ee12374c3433c9..4bdcbc5141f38bea75d5ef9c6fc04b7cf08deaf4 100644 --- a/core/modules/taxonomy/taxonomy.pages.inc +++ b/core/modules/taxonomy/taxonomy.pages.inc @@ -79,8 +79,6 @@ function taxonomy_term_feed($term) { /** * Page callback: Outputs JSON for taxonomy autocomplete suggestions. * - * Path: taxonomy/autocomplete - * * This callback outputs term name suggestions in response to Ajax requests * made by the taxonomy autocomplete widget for taxonomy term reference * fields. The output is a JSON object of plain-text term suggestions, keyed by diff --git a/core/modules/toolbar/toolbar.module b/core/modules/toolbar/toolbar.module index 254a41915546c40bce18484a6e0e19bf0af79c0d..4b1b8938bc90789ba10b5df498283e5e2be1a424 100644 --- a/core/modules/toolbar/toolbar.module +++ b/core/modules/toolbar/toolbar.module @@ -67,8 +67,6 @@ function toolbar_menu() { /** * Page callback: Toggles the visibility of the toolbar drawer. * - * Path: toolbar/toggle - * * @see toolbar_menu(). */ function toolbar_toggle_page() {