angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

plugin-install.php (377B)


      1 <?php
      2 /**
      3  * Install plugin network administration panel.
      4  *
      5  * @package WordPress
      6  * @subpackage Multisite
      7  * @since 3.1.0
      8  */
      9 
     10 if ( isset( $_GET['tab'] ) && ( 'plugin-information' === $_GET['tab'] ) ) {
     11 	define( 'IFRAME_REQUEST', true );
     12 }
     13 
     14 /** Load WordPress Administration Bootstrap */
     15 require_once __DIR__ . '/admin.php';
     16 
     17 require ABSPATH . 'wp-admin/plugin-install.php';