Index: admin_menu.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/admin_menu/admin_menu.module,v retrieving revision 1.43.2.6 diff -u -r1.43.2.6 admin_menu.module --- admin_menu.module 20 Jul 2008 19:11:57 -0000 1.43.2.6 +++ admin_menu.module 14 Aug 2008 15:31:24 -0000 @@ -15,22 +15,11 @@ case 'admin/settings/admin_menu': return t('The Administration Menu will appear at the top of the page for users who have been given the "access administration menu" permission. Customize appearance of the dropdown menu here.'); case 'admin/help#admin_menu': - return t(<<Drupal Administration Menu renders all administrative menu items below 'administer' -in a clean, attractive and purely CSS-based menu at the top of your website. It contains -not only regular menu items - local tasks are also included, giving you extremely fast -access to any administrative resource and function your Drupal installation provides.

-

The menu also can display the number of anonymous and authenticated users, -Devel module links, and items generated by -other modules.

-

The settings page is where administrators can choose -whether or not to allow the module to shift the page contents down to accommodate -the menu. Depending on the design/layout of your theme, this may cause problems with -the appearance of the page. Changing the '%margin-setting' setting may fix this -issue.

-

Please bear in mind that the displayed menu items in Drupal Administration Menu depend on the actual permissions of a user. For example, if a user does not have the permission "@permission-access" and "@permission-users", the whole "@user-management" menu item will not be displayed.

-EOT -, array('!settings' => url('admin/settings/admin_menu'), '%margin-setting' => t('Apply margin-top to page body'), '@permission-access' => 'administer access control', '@permission-users' => 'administer users', '@user-management' => t('User management'))); + $output = '

'. t('Drupal Administration Menu renders all administrative menu items below \'administer\' in a clean, attractive and purely CSS-based menu at the top of your website. It contains not only regular menu items - local tasks are also included, giving you extremely fast access to any administrative resource and function your Drupal installation provides.') .'

'; + $output .= '

'. t('The menu also can display the number of anonymous and authenticated users, Devel module links, and items generated by other modules.', array('@devel-module' => 'http://drupal.org/project/devel')) .'

'; + $output .= '

'. t('The settings page is where administrators can choose whether or not to allow the module to shift the page contents down to accommodate the menu. Depending on the design/layout of your theme, this may cause problems with the appearance of the page. Changing the \'%margin-setting\' setting may fix this issue.', array('@settings' => url('admin/settings/admin_menu'), '%margin-setting' => t('Apply margin-top to page body'))) .'

'; + $output .= '

'. t('Please bear in mind that the displayed menu items in Drupal Administration Menu depend on the actual permissions of a user. For example, if a user does not have the permission "@permission-access" and "@permission-users", the whole "@user-management" menu item will not be displayed.', array('@permission-access' => t('administer permissions'), '@permission-users' => t('administer users'), '@user-management' => t('User management'))) .'

'; + return $output; } }