This menus page shows child menus under that menu item.
Source code viewer
function hook_menu() // don't forget to change hook to your module name { 'title' => 'Custom content', // menu name 'description' => 'Custom made configuration pages.', // menu description 'position' => 'right', 'page callback' => 'system_admin_menu_block_page', 'file' => 'system.admin.inc', 'file path' => 'modules/system', ); return $items; }Programming Language: PHP