From 20b62b2911eff2c5961819b66e4b6464a68cc52b Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Fri, 28 Jan 2011 07:51:09 +0000 Subject: [PATCH] #1022172 by montesq: Fixed Missing return in example hook_menu code --- modules/system/system.api.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 1356dd629e72..ea4255c74391 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -925,6 +925,7 @@ function hook_menu_get_item_alter(&$router_item, $path, $original_map) { * $items['abc/def'] = array( * 'page callback' => 'mymodule_abc_view', * ); + * return $items; * } * * function mymodule_abc_view($ghi = 0, $jkl = '') { @@ -953,6 +954,7 @@ function hook_menu_get_item_alter(&$router_item, $path, $original_map) { * 'page callback' => 'mymodule_abc_view', * 'page arguments' => array(1, 'foo'), * ); + * return $items; * } * @endcode * When path 'abc/def' is requested, the page callback function will get 'def' -- GitLab