PageRenderTime 36ms CodeModel.GetById 9ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/plugin-install.php

https://gitlab.com/websumon/tosnib
PHP | 144 lines | 87 code | 23 blank | 34 comment | 18 complexity | d5f87cb9d74b95ba3a7c26173132ade9 MD5 | raw file
  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. * WordPress Administration Bootstrap.
  13. */
  14. require_once( dirname( __FILE__ ) . '/admin.php' );
  15. if ( ! current_user_can('install_plugins') )
  16. wp_die(__('You do not have sufficient permissions to install plugins on this site.'));
  17. if ( is_multisite() && ! is_network_admin() ) {
  18. wp_redirect( network_admin_url( 'plugin-install.php' ) );
  19. exit();
  20. }
  21. $wp_list_table = _get_list_table('WP_Plugin_Install_List_Table');
  22. $pagenum = $wp_list_table->get_pagenum();
  23. if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) {
  24. $location = remove_query_arg( '_wp_http_referer', wp_unslash( $_SERVER['REQUEST_URI'] ) );
  25. if ( ! empty( $_REQUEST['paged'] ) ) {
  26. $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location );
  27. }
  28. wp_redirect( $location );
  29. exit;
  30. }
  31. $wp_list_table->prepare_items();
  32. $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
  33. if ( $pagenum > $total_pages && $total_pages > 0 ) {
  34. wp_redirect( add_query_arg( 'paged', $total_pages ) );
  35. exit;
  36. }
  37. $title = __( 'Add Plugins' );
  38. $parent_file = 'plugins.php';
  39. wp_enqueue_script( 'plugin-install' );
  40. if ( 'plugin-information' != $tab )
  41. add_thickbox();
  42. $body_id = $tab;
  43. wp_enqueue_script( 'updates' );
  44. /**
  45. * Fires before each tab on the Install Plugins screen is loaded.
  46. *
  47. * The dynamic portion of the action hook, `$tab`, allows for targeting
  48. * individual tabs, for instance 'install_plugins_pre_plugin-information'.
  49. *
  50. * @since 2.7.0
  51. */
  52. do_action( "install_plugins_pre_$tab" );
  53. get_current_screen()->add_help_tab( array(
  54. 'id' => 'overview',
  55. 'title' => __('Overview'),
  56. 'content' =>
  57. '<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>'
  58. ) );
  59. get_current_screen()->add_help_tab( array(
  60. 'id' => 'adding-plugins',
  61. 'title' => __('Adding Plugins'),
  62. 'content' =>
  63. '<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>' .
  64. '<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>' .
  65. '<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>' .
  66. '<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>'
  67. ) );
  68. get_current_screen()->set_help_sidebar(
  69. '<p><strong>' . __('For more information:') . '</strong></p>' .
  70. '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
  71. '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  72. );
  73. get_current_screen()->set_screen_reader_content( array(
  74. 'heading_views' => __( 'Filter plugins list' ),
  75. 'heading_pagination' => __( 'Plugins list navigation' ),
  76. 'heading_list' => __( 'Plugins list' ),
  77. ) );
  78. /**
  79. * WordPress Administration Template Header.
  80. */
  81. include(ABSPATH . 'wp-admin/admin-header.php');
  82. ?>
  83. <div class="wrap">
  84. <h1>
  85. <?php
  86. echo esc_html( $title );
  87. if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) {
  88. if ( $tab === 'upload' ) {
  89. $href = self_admin_url( 'plugin-install.php' );
  90. $text = _x( 'Browse', 'plugins' );
  91. } else {
  92. $href = self_admin_url( 'plugin-install.php?tab=upload' );
  93. $text = __( 'Upload Plugin' );
  94. }
  95. echo ' <a href="' . $href . '" class="upload page-title-action">' . $text . '</a>';
  96. }
  97. ?>
  98. </h1>
  99. <?php
  100. if ( $tab !== 'upload' ) {
  101. $wp_list_table->views();
  102. echo '<br class="clear" />';
  103. }
  104. /**
  105. * Fires after the plugins list table in each tab of the Install Plugins screen.
  106. *
  107. * The dynamic portion of the action hook, `$tab`, allows for targeting
  108. * individual tabs, for instance 'install_plugins_plugin-information'.
  109. *
  110. * @since 2.7.0
  111. *
  112. * @param int $paged The current page number of the plugins list table.
  113. */
  114. do_action( "install_plugins_$tab", $paged ); ?>
  115. </div>
  116. <?php
  117. wp_print_request_filesystem_credentials_modal();
  118. /**
  119. * WordPress Administration Template Footer.
  120. */
  121. include(ABSPATH . 'wp-admin/admin-footer.php');