Changeset 16984 for trunk/wp-admin/network/site-info.php
- Timestamp:
- 12/16/2010 07:13:01 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/site-info.php
r16983 r16984 19 19 add_contextual_help($current_screen, 20 20 '<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' . 21 '<p>' . __('<strong>Info</strong> The domain and path are rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as Archived, Spammed, Deleted and Mature, to remove from public listings or disable.') . '</p>' .21 '<p>' . __('<strong>Info</strong> - The domain and path are rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as Archived, Spammed, Deleted and Mature, to remove from public listings or disable.') . '</p>' . 22 22 '<p>' . __('See the contextual help on the next tab. ') . '</p>' . 23 23 '<p><strong>' . __('For more information:') . '</strong></p>' . … … 90 90 <h3 class="nav-tab-wrapper"> 91 91 <?php 92 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 93 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 92 $tabs = array( 93 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ), 94 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ), 95 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ), 96 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ), 97 ); 94 98 foreach ( $tabs as $tab_id => $tab ) { 95 99 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
Note: See TracChangeset
for help on using the changeset viewer.