home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress / wp-admin / my-sites.php < prev    next >
Encoding:
PHP Script  |  2017-10-09  |  4.5 KB  |  152 lines

  1. <?php
  2. /**
  3.  * My Sites dashboard.
  4.  *
  5.  * @package WordPress
  6.  * @subpackage Multisite
  7.  * @since 3.0.0
  8.  */
  9.  
  10. require_once( dirname( __FILE__ ) . '/admin.php' );
  11.  
  12. if ( !is_multisite() )
  13.     wp_die( __( 'Multisite support is not enabled.' ) );
  14.  
  15. if ( ! current_user_can('read') )
  16.     wp_die( __( 'Sorry, you are not allowed to access this page.' ) );
  17.  
  18. $action = isset( $_POST['action'] ) ? $_POST['action'] : 'splash';
  19.  
  20. $blogs = get_blogs_of_user( $current_user->ID );
  21.  
  22. $updated = false;
  23. if ( 'updateblogsettings' == $action && isset( $_POST['primary_blog'] ) ) {
  24.     check_admin_referer( 'update-my-sites' );
  25.  
  26.     $blog = get_site( (int) $_POST['primary_blog'] );
  27.     if ( $blog && isset( $blog->domain ) ) {
  28.         update_user_option( $current_user->ID, 'primary_blog', (int) $_POST['primary_blog'], true );
  29.         $updated = true;
  30.     } else {
  31.         wp_die( __( 'The primary site you chose does not exist.' ) );
  32.     }
  33. }
  34.  
  35. $title = __( 'My Sites' );
  36. $parent_file = 'index.php';
  37.  
  38. get_current_screen()->add_help_tab( array(
  39.     'id'      => 'overview',
  40.     'title'   => __('Overview'),
  41.     'content' =>
  42.         '<p>' . __('This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.') . '</p>'
  43. ) );
  44.  
  45. get_current_screen()->set_help_sidebar(
  46.     '<p><strong>' . __('For more information:') . '</strong></p>' .
  47.     '<p>' . __('<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen">Documentation on My Sites</a>') . '</p>' .
  48.     '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
  49. );
  50.  
  51. require_once( ABSPATH . 'wp-admin/admin-header.php' );
  52.  
  53. if ( $updated ) { ?>
  54.     <div id="message" class="updated notice is-dismissible"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>
  55. <?php } ?>
  56.  
  57. <div class="wrap">
  58. <h1 class="wp-heading-inline"><?php
  59. echo esc_html( $title );
  60. ?></h1>
  61.  
  62. <?php
  63. if ( in_array( get_site_option( 'registration' ), array( 'all', 'blog' ) ) ) {
  64.     /** This filter is documented in wp-login.php */
  65.     $sign_up_url = apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) );
  66.     printf( ' <a href="%s" class="page-title-action">%s</a>', esc_url( $sign_up_url ), esc_html_x( 'Add New', 'site' ) );
  67. }
  68.  
  69. if ( empty( $blogs ) ) :
  70.     echo '<p>';
  71.     _e( 'You must be a member of at least one site to use this page.' );
  72.     echo '</p>';
  73. else :
  74. ?>
  75.  
  76. <hr class="wp-header-end">
  77.  
  78. <form id="myblogs" method="post">
  79.     <?php
  80.     choose_primary_blog();
  81.     /**
  82.      * Fires before the sites list on the My Sites screen.
  83.      *
  84.      * @since 3.0.0
  85.      */
  86.     do_action( 'myblogs_allblogs_options' );
  87.     ?>
  88.     <br clear="all" />
  89.     <ul class="my-sites striped">
  90.     <?php
  91.     /**
  92.      * Enable the Global Settings section on the My Sites screen.
  93.      *
  94.      * By default, the Global Settings section is hidden. Passing a non-empty
  95.      * string to this filter will enable the section, and allow new settings
  96.      * to be added, either globally or for specific sites.
  97.      *
  98.      * @since MU (3.0.0)
  99.      *
  100.      * @param string $settings_html The settings HTML markup. Default empty.
  101.      * @param object $context       Context of the setting (global or site-specific). Default 'global'.
  102.      */
  103.     $settings_html = apply_filters( 'myblogs_options', '', 'global' );
  104.     if ( $settings_html != '' ) {
  105.         echo '<h3>' . __( 'Global Settings' ) . '</h3>';
  106.         echo $settings_html;
  107.     }
  108.     reset( $blogs );
  109.  
  110.     foreach ( $blogs as $user_blog ) {
  111.         switch_to_blog( $user_blog->userblog_id );
  112.  
  113.         echo "<li>";
  114.         echo "<h3>{$user_blog->blogname}</h3>";
  115.  
  116.         $actions = "<a href='" . esc_url( home_url() ). "'>" . __( 'Visit' ) . '</a>';
  117.  
  118.         if ( current_user_can( 'read' ) ) {
  119.             $actions .= " | <a href='" . esc_url( admin_url() ) . "'>" . __( 'Dashboard' ) . '</a>';
  120.         }
  121.  
  122.         /**
  123.          * Filters the row links displayed for each site on the My Sites screen.
  124.          *
  125.          * @since MU (3.0.0)
  126.          *
  127.          * @param string $actions   The HTML site link markup.
  128.          * @param object $user_blog An object containing the site data.
  129.          */
  130.         $actions = apply_filters( 'myblogs_blog_actions', $actions, $user_blog );
  131.         echo "<p class='my-sites-actions'>" . $actions . '</p>';
  132.  
  133.         /** This filter is documented in wp-admin/my-sites.php */
  134.         echo apply_filters( 'myblogs_options', '', $user_blog );
  135.         echo "</li>";
  136.  
  137.         restore_current_blog();
  138.     }?>
  139.     </ul>
  140.     <?php
  141.     if ( count( $blogs ) > 1 || has_action( 'myblogs_allblogs_options' ) || has_filter( 'myblogs_options' ) ) {
  142.         ?><input type="hidden" name="action" value="updateblogsettings" /><?php
  143.         wp_nonce_field( 'update-my-sites' );
  144.         submit_button();
  145.     }
  146.     ?>
  147.     </form>
  148. <?php endif; ?>
  149.     </div>
  150. <?php
  151. include( ABSPATH . 'wp-admin/admin-footer.php' );
  152.