Make WordPress Core

Changeset 33186


Ignore:
Timestamp:
07/13/2015 12:26:21 AM (9 years ago)
Author:
jeremyfelt
Message:

Network Admin: Improved header information in Edit Site tabs.

  • Use the site's name rather than URL in the Edit Site header.
  • Provide "Visit" and "Dashboard" links for the site on all tabs.

Props @Fab1en, @jeremyfelt.
Fixes #32525.

Location:
trunk/src/wp-admin
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/common.css

    r33169 r33186  
    30383038}
    30393039
     3040/* Edit Site */
     3041.network-admin .edit-site-actions {
     3042    margin-top: 0;
     3043}
     3044
    30403045/* My Sites */
    30413046.my-sites {
  • trunk/src/wp-admin/network/site-info.php

    r33144 r33186  
    130130}
    131131
    132 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    133 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    134 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     132$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    135133
    136134$parent_file = 'sites.php';
     
    142140
    143141<div class="wrap">
    144 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     142<h1 id="edit-site"><?php echo $title; ?></h1>
     143<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id ) ); ?>">Visit</a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>">Dashboard</a></p>
    145144<h3 class="nav-tab-wrapper">
    146145<?php
  • trunk/src/wp-admin/network/site-settings.php

    r33144 r33186  
    8080}
    8181
    82 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    83 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    84 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     82$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    8583
    8684$parent_file = 'sites.php';
     
    9290
    9391<div class="wrap">
    94 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     92<h1 id="edit-site"><?php echo $title; ?></h1>
     93<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id ) ); ?>">Visit</a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>">Dashboard</a></p>
    9594<h3 class="nav-tab-wrapper">
    9695<?php
  • trunk/src/wp-admin/network/site-themes.php

    r33144 r33186  
    134134add_screen_option( 'per_page' );
    135135
    136 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    137 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    138 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     136$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    139137
    140138$parent_file = 'sites.php';
     
    144142
    145143<div class="wrap">
    146 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     144<h1 id="edit-site"><?php echo $title; ?></h1>
     145<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id ) ); ?>">Visit</a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>">Dashboard</a></p>
    147146<h3 class="nav-tab-wrapper">
    148147<?php
  • trunk/src/wp-admin/network/site-users.php

    r33145 r33186  
    162162add_screen_option( 'per_page' );
    163163
    164 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    165 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    166 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     164$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    167165
    168166$parent_file = 'sites.php';
     
    187185
    188186<div class="wrap">
    189 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     187<h1 id="edit-site"><?php echo $title; ?></h1>
     188<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id ) ); ?>">Visit</a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>">Dashboard</a></p>
    190189<h3 class="nav-tab-wrapper">
    191190<?php
Note: See TracChangeset for help on using the changeset viewer.