]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/plugin-install.php
WordPress 4.4.2
[autoinstalls/wordpress.git] / wp-admin / plugin-install.php
1 <?php
2 /**
3  * Install plugin administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8 // TODO route this pages via a specific iframe handler instead of the do_action below
9 if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
10         define( 'IFRAME_REQUEST', true );
11
12 /**
13  * WordPress Administration Bootstrap.
14  */
15 require_once( dirname( __FILE__ ) . '/admin.php' );
16
17 if ( ! current_user_can('install_plugins') )
18         wp_die(__('You do not have sufficient permissions to install plugins on this site.'));
19
20 if ( is_multisite() && ! is_network_admin() ) {
21         wp_redirect( network_admin_url( 'plugin-install.php' ) );
22         exit();
23 }
24
25 $wp_list_table = _get_list_table('WP_Plugin_Install_List_Table');
26 $pagenum = $wp_list_table->get_pagenum();
27
28 if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) {
29         $location = remove_query_arg( '_wp_http_referer', wp_unslash( $_SERVER['REQUEST_URI'] ) );
30
31         if ( ! empty( $_REQUEST['paged'] ) ) {
32                 $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location );
33         }
34
35         wp_redirect( $location );
36         exit;
37 }
38
39 $wp_list_table->prepare_items();
40
41 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
42
43 if ( $pagenum > $total_pages && $total_pages > 0 ) {
44         wp_redirect( add_query_arg( 'paged', $total_pages ) );
45         exit;
46 }
47
48 $title = __( 'Add Plugins' );
49 $parent_file = 'plugins.php';
50
51 wp_enqueue_script( 'plugin-install' );
52 if ( 'plugin-information' != $tab )
53         add_thickbox();
54
55 $body_id = $tab;
56
57 wp_enqueue_script( 'updates' );
58
59 /**
60  * Fires before each tab on the Install Plugins screen is loaded.
61  *
62  * The dynamic portion of the action hook, `$tab`, allows for targeting
63  * individual tabs, for instance 'install_plugins_pre_plugin-information'.
64  *
65  * @since 2.7.0
66  */
67 do_action( "install_plugins_pre_$tab" );
68
69 get_current_screen()->add_help_tab( array(
70 'id'            => 'overview',
71 'title'         => __('Overview'),
72 'content'       =>
73         '<p>' . sprintf(__('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s" target="_blank">WordPress.org Plugin Directory</a> are compatible with the license WordPress uses. You can find new plugins to install by searching or browsing the Directory right here in your own Plugins section.'), 'https://wordpress.org/plugins/') . '</p>'
74 ) );
75 get_current_screen()->add_help_tab( array(
76 'id'            => 'adding-plugins',
77 'title'         => __('Adding Plugins'),
78 'content'       =>
79         '<p>' . __('If you know what you&#8217;re looking for, Search is your best bet. The Search screen has options to search the WordPress.org Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.') . '</p>' .
80         '<p>' . __('If you just want to get an idea of what&#8217;s available, you can browse Featured and Popular plugins by using the links in the upper left of the screen. These sections rotate regularly.') . '</p>' .
81         '<p>' . __('You can also browse a user&#8217;s favorite plugins, by using the Favorites link in the upper left of the screen and entering their WordPress.org username.') . '</p>' .
82         '<p>' . __('If you want to install a plugin that you&#8217;ve downloaded elsewhere, click the Upload link in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.') . '</p>'
83 ) );
84
85 get_current_screen()->set_help_sidebar(
86         '<p><strong>' . __('For more information:') . '</strong></p>' .
87         '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
88         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
89 );
90
91 get_current_screen()->set_screen_reader_content( array(
92         'heading_views'      => __( 'Filter plugins list' ),
93         'heading_pagination' => __( 'Plugins list navigation' ),
94         'heading_list'       => __( 'Plugins list' ),
95 ) );
96
97 /**
98  * WordPress Administration Template Header.
99  */
100 include(ABSPATH . 'wp-admin/admin-header.php');
101 ?>
102 <div class="wrap">
103 <h1>
104         <?php
105         echo esc_html( $title );
106         if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) {
107                 if ( $tab === 'upload' ) {
108                         $href = self_admin_url( 'plugin-install.php' );
109                         $text = _x( 'Browse', 'plugins' );
110                 } else {
111                         $href = self_admin_url( 'plugin-install.php?tab=upload' );
112                         $text = __( 'Upload Plugin' );
113                 }
114                 echo ' <a href="' . $href . '" class="upload page-title-action">' . $text . '</a>';
115         }
116         ?>
117 </h1>
118
119 <?php
120 if ( $tab !== 'upload' ) {
121         $wp_list_table->views();
122         echo '<br class="clear" />';
123 }
124
125 /**
126  * Fires after the plugins list table in each tab of the Install Plugins screen.
127  *
128  * The dynamic portion of the action hook, `$tab`, allows for targeting
129  * individual tabs, for instance 'install_plugins_plugin-information'.
130  *
131  * @since 2.7.0
132  *
133  * @param int $paged The current page number of the plugins list table.
134  */
135 do_action( "install_plugins_$tab", $paged ); ?>
136 </div>
137
138 <?php
139 wp_print_request_filesystem_credentials_modal();
140
141 /**
142  * WordPress Administration Template Footer.
143  */
144 include(ABSPATH . 'wp-admin/admin-footer.php');