diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-21 20:14:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-21 20:14:19 +0000 |
commit | b004f328eec10308fe3b310c640d5f376241f4cd (patch) | |
tree | f92bde5cb09039f947505b35ef68134a409f83c6 /modules/user/user.module | |
parent | e08f5f27bd5b5dd41f0dbcfcca9fad0418aafb55 (diff) | |
download | brdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.gz brdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.bz2 |
- Patch #92992 by webchick and neclimdul: clean up documentation that is superseded by the new 'by module' administration dashboard.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index d35f36ecd..e9fd3bed7 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2311,15 +2311,6 @@ function user_help($section) { case 'admin/help#user': $output = '<p>'. t('The user module allows users to register, login, and log out. Users benefit from being able to sign on because it associates content they create with their account and allows various permissions to be set for their roles. The user module supports user roles which can setup fine grained permissions allowing each role to do only what the administrator wants them to. Each user is assigned to one or more roles. By default there are two roles <em>anonymous</em> - a user who has not logged in, and <em>authenticated</em> a user who has signed up and who has been authorized.') .'</p>'; $output .= '<p>'. t('Users can use their own name or handle and can fine tune some personal configuration settings through their individual my account page. Registered users need to authenticate by supplying either a local username and password, or a remote username and password such as DelphiForums ID, or one from a Drupal powered website. A visitor accessing your website is assigned an unique ID, the so-called session ID, which is stored in a cookie. For security\'s sake, the cookie does not contain personal information but acts as a key to retrieve the information stored on your server.') .'</p>'; - $output .= t('<p>You can</p> -<ul> -<li>view your <a href="@user">user page</a>.</li> -<li>administer users at <a href="@admin-user">administer >> user management</a>.</li> -<li>allow users who have the "select different theme" permission to select themes from their user account by enabling themes in <a href="@admin-themes">administer >> site building >> themes</a>.</li> -<li>read user profile help at <a href="@admin-help-profile">administer >> help >> profile</a>.</li> -<li>read about distributed authentication in the system module help at <a href="@admin-help-system">administer >> help >> system</a>.</li> -</ul> -', array('@user' => url('user'), '@admin-user' => url('admin/user/user'), '@admin-themes' => url('admin/build/themes'), '@admin-help-profile' => url('admin/help/profile'), '@admin-help-system' => url('admin/help/system'))); $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@user">User page</a>.', array('@user' => 'http://drupal.org/handbook/modules/user/')) .'</p>'; return $output; case 'admin/user/user': |