Make WordPress Core


Ignore:
Timestamp:
12/16/2010 06:52:47 AM (14 years ago)
Author:
nacin
Message:

Network Admin contextual help. props andrea_r (!), see #15314.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network/user-new.php

    r16296 r16981  
    1616if ( ! current_user_can('create_users') )
    1717    wp_die(__('You do not have sufficient permissions to add users to this network.'));
     18
     19
     20add_contextual_help($current_screen,
     21    '<p>' . __('Add User will add that person to this table and send them an email.') . '</p>' .
     22    '<p>' . __('Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.') . '</p>' .
     23    '<p><strong>' . __('For more information:') . '</strong></p>' .
     24    '<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Users_SubPanel" target="_blank">Network Users Documentation</a>') . '</p>' .
     25    '<p>' . __('<a href="http://wordpress.org/support/multisite/" target="_blank">Support Forums</a>') . '</p>'
     26);
    1827
    1928if ( isset($_REQUEST['action']) && 'add-user' == $_REQUEST['action'] ) {
Note: See TracChangeset for help on using the changeset viewer.