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

git-svn-id: http://svn.automattic.com/wordpress/trunk@16981 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin
2010-12-16 06:52:47 +00:00
parent 1cd758dc89
commit d0e27b0935
10 changed files with 58 additions and 8 deletions

View File

@@ -16,6 +16,15 @@ if ( ! is_multisite() )
if ( ! current_user_can('manage_sites') )
wp_die(__('You do not have sufficient permissions to edit this site.'));
add_contextual_help($current_screen,
'<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
'<p>' . __('<strong>Options</strong> This information is filled in my default as well as plugin data. Note that some fields are grayed out and say Serialized Data. These are stored values in the database which you cannot change from here. ') . '</p>' .
'<p>' . __('See the contextual help on the next tab. ') . '</p>' .
'<p><strong>' . __('For more information:') . '</strong></p>' .
'<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Options_SubPanel" target="_blank">Network Options Documentation</a>') . '</p>' .
'<p>' . __('<a href="http://wordpress.org/support/multisite/" target="_blank">Support Forums</a>') . '</p>'
);
$id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
if ( ! $id )