home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress2 / wp-admin / network / sites.php < prev    next >
Encoding:
PHP Script  |  2017-08-01  |  12.3 KB  |  362 lines

  1. <?php
  2. /**
  3.  * Multisite sites administration panel.
  4.  *
  5.  * @package WordPress
  6.  * @subpackage Multisite
  7.  * @since 3.0.0
  8.  */
  9.  
  10. /** Load WordPress Administration Bootstrap */
  11. require_once( dirname( __FILE__ ) . '/admin.php' );
  12.  
  13. if ( ! current_user_can( 'manage_sites' ) )
  14.     wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
  15.  
  16. $wp_list_table = _get_list_table( 'WP_MS_Sites_List_Table' );
  17. $pagenum = $wp_list_table->get_pagenum();
  18.  
  19. $title = __( 'Sites' );
  20. $parent_file = 'sites.php';
  21.  
  22. add_screen_option( 'per_page' );
  23.  
  24. get_current_screen()->add_help_tab( array(
  25.     'id'      => 'overview',
  26.     'title'   => __('Overview'),
  27.     'content' =>
  28.         '<p>' . __('Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '</p>' .
  29.         '<p>' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '</p>' .
  30.         '<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' .
  31.         '<ul><li>' . __('An Edit link to a separate Edit Site screen.') . '</li>' .
  32.         '<li>' . __('Dashboard leads to the Dashboard for that site.') . '</li>' .
  33.         '<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' .
  34.         '<li>' . __('Delete which is a permanent action after the confirmation screens.') . '</li>' .
  35.         '<li>' . __('Visit to go to the front-end site live.') . '</li></ul>' .
  36.         '<p>' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '</p>' .
  37.         '<p>' . __('Clicking on bold headings can re-sort this table.') . '</p>'
  38. ) );
  39.  
  40. get_current_screen()->set_help_sidebar(
  41.     '<p><strong>' . __('For more information:') . '</strong></p>' .
  42.     '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen">Documentation on Site Management</a>') . '</p>' .
  43.     '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>') . '</p>'
  44. );
  45.  
  46. get_current_screen()->set_screen_reader_content( array(
  47.     'heading_pagination' => __( 'Sites list navigation' ),
  48.     'heading_list'       => __( 'Sites list' ),
  49. ) );
  50.  
  51. $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
  52.  
  53. if ( isset( $_GET['action'] ) ) {
  54.     /** This action is documented in wp-admin/network/edit.php */
  55.     do_action( 'wpmuadminedit' );
  56.  
  57.     // A list of valid actions and their associated messaging for confirmation output.
  58.     $manage_actions = array(
  59.         'activateblog'   => __( 'You are about to activate the site %s.' ),
  60.         'deactivateblog' => __( 'You are about to deactivate the site %s.' ),
  61.         'unarchiveblog'  => __( 'You are about to unarchive the site %s.' ),
  62.         'archiveblog'    => __( 'You are about to archive the site %s.' ),
  63.         'unspamblog'     => __( 'You are about to unspam the site %s.' ),
  64.         'spamblog'       => __( 'You are about to mark the site %s as spam.' ),
  65.         'deleteblog'     => __( 'You are about to delete the site %s.' ),
  66.         'unmatureblog'   => __( 'You are about to mark the site %s as mature.' ),
  67.         'matureblog'     => __( 'You are about to mark the site %s as not mature.' ),
  68.     );
  69.  
  70.     if ( 'confirm' === $_GET['action'] ) {
  71.         // The action2 parameter contains the action being taken on the site.
  72.         $site_action = $_GET['action2'];
  73.  
  74.         if ( ! array_key_exists( $site_action, $manage_actions ) ) {
  75.             wp_die( __( 'The requested action is not valid.' ) );
  76.         }
  77.  
  78.         // The mature/unmature UI exists only as external code. Check the "confirm" nonce for backward compatibility.
  79.         if ( 'matureblog' === $site_action || 'unmatureblog' === $site_action ) {
  80.             check_admin_referer( 'confirm' );
  81.         } else {
  82.             check_admin_referer( $site_action . '_' . $id );
  83.         }
  84.  
  85.         if ( ! headers_sent() ) {
  86.             nocache_headers();
  87.             header( 'Content-Type: text/html; charset=utf-8' );
  88.         }
  89.  
  90.         if ( get_network()->site_id == $id ) {
  91.             wp_die( __( 'Sorry, you are not allowed to change the current site.' ) );
  92.         }
  93.  
  94.         $site_details = get_site( $id );
  95.         $site_address = untrailingslashit( $site_details->domain . $site_details->path );
  96.  
  97.         require_once( ABSPATH . 'wp-admin/admin-header.php' );
  98.         ?>
  99.             <div class="wrap">
  100.                 <h1><?php _e( 'Confirm your action' ); ?></h1>
  101.                 <form action="sites.php?action=<?php echo esc_attr( $site_action ); ?>" method="post">
  102.                     <input type="hidden" name="action" value="<?php echo esc_attr( $site_action ); ?>" />
  103.                     <input type="hidden" name="id" value="<?php echo esc_attr( $id ); ?>" />
  104.                     <input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
  105.                     <?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?>
  106.                     <p><?php echo sprintf( $manage_actions[ $site_action ], $site_address ); ?></p>
  107.                     <?php submit_button( __( 'Confirm' ), 'primary' ); ?>
  108.                 </form>
  109.             </div>
  110.         <?php
  111.         require_once( ABSPATH . 'wp-admin/admin-footer.php' );
  112.         exit();
  113.     } elseif ( array_key_exists( $_GET['action'], $manage_actions ) ) {
  114.         $action = $_GET['action'];
  115.         check_admin_referer( $action . '_' . $id );
  116.     } elseif ( 'allblogs' === $_GET['action'] ) {
  117.         check_admin_referer( 'bulk-sites' );
  118.     }
  119.  
  120.     $updated_action = '';
  121.  
  122.     switch ( $_GET['action'] ) {
  123.  
  124.         case 'deleteblog':
  125.             if ( ! current_user_can( 'delete_sites' ) )
  126.                 wp_die( __( 'Sorry, you are not allowed to access this page.' ), '', array( 'response' => 403 ) );
  127.  
  128.             $updated_action = 'not_deleted';
  129.             if ( $id != '0' && $id != get_network()->site_id && current_user_can( 'delete_site', $id ) ) {
  130.                 wpmu_delete_blog( $id, true );
  131.                 $updated_action = 'delete';
  132.             }
  133.         break;
  134.  
  135.         case 'delete_sites':
  136.             check_admin_referer( 'ms-delete-sites' );
  137.  
  138.             foreach ( (array) $_POST['site_ids'] as $site_id ) {
  139.                 $site_id = (int) $site_id;
  140.  
  141.                 if ( $site_id == get_network()->site_id ) {
  142.                     continue;
  143.                 }
  144.  
  145.                 if ( ! current_user_can( 'delete_site', $site_id ) ) {
  146.                     $site = get_site( $site_id );
  147.                     $site_address = untrailingslashit( $site->domain . $site->path );
  148.  
  149.                     wp_die( sprintf( __( 'Sorry, you are not allowed to delete the site %s.' ), $site_address ), 403 );
  150.                 }
  151.  
  152.                 $updated_action = 'all_delete';
  153.                 wpmu_delete_blog( $site_id, true );
  154.             }
  155.             break;
  156.  
  157.         case 'allblogs':
  158.             if ( ( isset( $_POST['action'] ) || isset( $_POST['action2'] ) ) && isset( $_POST['allblogs'] ) ) {
  159.                 $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2'];
  160.  
  161.                 foreach ( (array) $_POST['allblogs'] as $key => $val ) {
  162.                     if ( $val != '0' && $val != get_network()->site_id ) {
  163.                         switch ( $doaction ) {
  164.                             case 'delete':
  165.                                 require_once( ABSPATH . 'wp-admin/admin-header.php' );
  166.                                 ?>
  167.                                 <div class="wrap">
  168.                                     <h1><?php _e( 'Confirm your action' ); ?></h1>
  169.                                     <form action="sites.php?action=delete_sites" method="post">
  170.                                         <input type="hidden" name="action" value="delete_sites" />
  171.                                         <input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
  172.                                         <?php wp_nonce_field( 'ms-delete-sites', '_wpnonce', false ); ?>
  173.                                         <p><?php _e( 'You are about to delete the following sites:' ); ?></p>
  174.                                         <ul class="ul-disc">
  175.                                             <?php foreach ( $_POST['allblogs'] as $site_id ) :
  176.                                                 $site = get_site( $site_id );
  177.                                                 $site_address = untrailingslashit( $site->domain . $site->path );
  178.                                                 ?>
  179.                                                 <li>
  180.                                                     <?php echo $site_address; ?>
  181.                                                     <input type="hidden" name="site_ids[]" value="<?php echo (int) $site_id; ?>" />
  182.                                                 </li>
  183.                                             <?php endforeach; ?>
  184.                                         </ul>
  185.                                         <?php submit_button( __( 'Confirm' ), 'primary' ); ?>
  186.                                     </form>
  187.                                 </div>
  188.                                 <?php
  189.                                 require_once( ABSPATH . 'wp-admin/admin-footer.php' );
  190.                                 exit();
  191.                             break;
  192.  
  193.                             case 'spam':
  194.                             case 'notspam':
  195.                                 $updated_action = ( 'spam' === $doaction ) ? 'all_spam' : 'all_notspam';
  196.                                 update_blog_status( $val, 'spam', ( 'spam' === $doaction ) ? '1' : '0' );
  197.                             break;
  198.                         }
  199.                     } else {
  200.                         wp_die( __( 'Sorry, you are not allowed to change the current site.' ) );
  201.                     }
  202.                 }
  203.                 if ( ! in_array( $doaction, array( 'delete', 'spam', 'notspam' ), true ) ) {
  204.                     $redirect_to = wp_get_referer();
  205.                     $blogs = (array) $_POST['allblogs'];
  206.                     /** This action is documented in wp-admin/network/site-themes.php */
  207.                     $redirect_to = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id );
  208.                     wp_safe_redirect( $redirect_to );
  209.                     exit();
  210.                 }
  211.             } else {
  212.                 $location = network_admin_url( 'sites.php' );
  213.                 if ( ! empty( $_REQUEST['paged'] ) ) {
  214.                     $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location );
  215.                 }
  216.                 wp_redirect( $location );
  217.                 exit();
  218.             }
  219.         break;
  220.  
  221.         case 'archiveblog':
  222.         case 'unarchiveblog':
  223.             update_blog_status( $id, 'archived', ( 'archiveblog' === $_GET['action'] ) ? '1' : '0' );
  224.         break;
  225.  
  226.         case 'activateblog':
  227.             update_blog_status( $id, 'deleted', '0' );
  228.  
  229.             /**
  230.              * Fires after a network site is activated.
  231.              *
  232.              * @since MU (3.0.0)
  233.              *
  234.              * @param string $id The ID of the activated site.
  235.              */
  236.             do_action( 'activate_blog', $id );
  237.         break;
  238.  
  239.         case 'deactivateblog':
  240.             /**
  241.              * Fires before a network site is deactivated.
  242.              *
  243.              * @since MU (3.0.0)
  244.              *
  245.              * @param string $id The ID of the site being deactivated.
  246.              */
  247.             do_action( 'deactivate_blog', $id );
  248.             update_blog_status( $id, 'deleted', '1' );
  249.         break;
  250.  
  251.         case 'unspamblog':
  252.         case 'spamblog':
  253.             update_blog_status( $id, 'spam', ( 'spamblog' === $_GET['action'] ) ? '1' : '0' );
  254.         break;
  255.  
  256.         case 'unmatureblog':
  257.         case 'matureblog':
  258.             update_blog_status( $id, 'mature', ( 'matureblog' === $_GET['action'] ) ? '1' : '0' );
  259.         break;
  260.     }
  261.  
  262.     if ( empty( $updated_action ) && array_key_exists( $_GET['action'], $manage_actions ) ) {
  263.         $updated_action = $_GET['action'];
  264.     }
  265.  
  266.     if ( ! empty( $updated_action ) ) {
  267.         wp_safe_redirect( add_query_arg( array( 'updated' => $updated_action ), wp_get_referer() ) );
  268.         exit();
  269.     }
  270. }
  271.  
  272. $msg = '';
  273. if ( isset( $_GET['updated'] ) ) {
  274.     switch ( $_GET['updated'] ) {
  275.         case 'all_notspam':
  276.             $msg = __( 'Sites removed from spam.' );
  277.         break;
  278.         case 'all_spam':
  279.             $msg = __( 'Sites marked as spam.' );
  280.         break;
  281.         case 'all_delete':
  282.             $msg = __( 'Sites deleted.' );
  283.         break;
  284.         case 'delete':
  285.             $msg = __( 'Site deleted.' );
  286.         break;
  287.         case 'not_deleted':
  288.             $msg = __( 'Sorry, you are not allowed to delete that site.' );
  289.         break;
  290.         case 'archiveblog':
  291.             $msg = __( 'Site archived.' );
  292.         break;
  293.         case 'unarchiveblog':
  294.             $msg = __( 'Site unarchived.' );
  295.         break;
  296.         case 'activateblog':
  297.             $msg = __( 'Site activated.' );
  298.         break;
  299.         case 'deactivateblog':
  300.             $msg = __( 'Site deactivated.' );
  301.         break;
  302.         case 'unspamblog':
  303.             $msg = __( 'Site removed from spam.' );
  304.         break;
  305.         case 'spamblog':
  306.             $msg = __( 'Site marked as spam.' );
  307.         break;
  308.         default:
  309.             /**
  310.              * Filters a specific, non-default site-updated message in the Network admin.
  311.              *
  312.              * The dynamic portion of the hook name, `$_GET['updated']`, refers to the
  313.              * non-default site update action.
  314.              *
  315.              * @since 3.1.0
  316.              *
  317.              * @param string $msg The update message. Default 'Settings saved'.
  318.              */
  319.             $msg = apply_filters( 'network_sites_updated_message_' . $_GET['updated'], __( 'Settings saved.' ) );
  320.         break;
  321.     }
  322.  
  323.     if ( ! empty( $msg ) )
  324.         $msg = '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
  325. }
  326.  
  327. $wp_list_table->prepare_items();
  328.  
  329. require_once( ABSPATH . 'wp-admin/admin-header.php' );
  330. ?>
  331.  
  332. <div class="wrap">
  333. <h1 class="wp-heading-inline"><?php _e( 'Sites' ); ?></h1>
  334.  
  335. <?php if ( current_user_can( 'create_sites') ) : ?>
  336.     <a href="<?php echo network_admin_url('site-new.php'); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'site' ); ?></a>
  337. <?php endif; ?>
  338.  
  339. <?php
  340. if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
  341.     /* translators: %s: search keywords */
  342.     printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) );
  343. }
  344. ?>
  345.  
  346. <hr class="wp-header-end">
  347.  
  348. <?php echo $msg; ?>
  349.  
  350. <form method="get" id="ms-search">
  351. <?php $wp_list_table->search_box( __( 'Search Sites' ), 'site' ); ?>
  352. <input type="hidden" name="action" value="blogs" />
  353. </form>
  354.  
  355. <form id="form-site-list" action="sites.php?action=allblogs" method="post">
  356.     <?php $wp_list_table->display(); ?>
  357. </form>
  358. </div>
  359. <?php
  360.  
  361. require_once( ABSPATH . 'wp-admin/admin-footer.php' ); ?>
  362.