Changeset 19509 for trunk/wp-admin/users.php
- Timestamp:
- 12/01/2011 01:17:14 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/users.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/users.php
r19438 r19509 22 22 // contextual help - choose Help on the top right of admin panel to preview this. 23 23 get_current_screen()->add_help_tab( array( 24 'id' => ' screen-info',25 'title' => __(' Users List'),24 'id' => 'overview', 25 'title' => __('Overview'), 26 26 'content' => '<p>' . __('This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.') . '</p>' . 27 27 '<p>' . __('To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section.') . '</p>' … … 29 29 30 30 get_current_screen()->add_help_tab( array( 31 'id' => ' customize-display',32 'title' => __(' Customizing ThisDisplay'),31 'id' => 'screen-display', 32 'title' => __('Screen Display'), 33 33 'content' => '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' . 34 34 '<ul>' . … … 39 39 ) ); 40 40 41 $help = '<p>' . __('Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:') . '</p>' . 42 '<ul>' . 43 '<li>' . __('Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>'; 44 45 if ( is_multisite() ) 46 $help .= '<li>' . __( 'Remove allows you to remove a user from your site. It does not delete their posts. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>'; 47 else 48 $help .= '<li>' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their posts. You can also delete multiple users at once by using Bulk Actions.' ) . '</li>'; 49 50 $help .= '</ul>'; 51 41 52 get_current_screen()->add_help_tab( array( 42 'id' => 'row-actions', 43 'title' => __('Action Links'), 44 'content' => '<p>' . __('Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:') . '</p>' . 45 '<ul>' . 46 '<li>' . __('Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>' . 47 ( is_multisite() ? '<li>' . __('Remove allows you to remove a user from your site. It does not delete their posts.') . '</li>' : '<li>' . __('Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their posts.') . '</li>' ) . 48 '</ul>' 53 'id' => 'actions', 54 'title' => __('Actions'), 55 'content' => $help, 49 56 ) ); 50 57 unset( $help ); 58 51 59 get_current_screen()->set_help_sidebar( 52 60 '<p><strong>' . __('For more information:') . '</strong></p>' .
Note: See TracChangeset
for help on using the changeset viewer.