Ticket #25229: wp-admin_plugin-install.php.patch
File wp-admin_plugin-install.php.patch, 933 bytes (added by , 11 years ago) |
---|
-
wp-admin/plugin-install.php
33 33 34 34 $body_id = $tab; 35 35 36 do_action('install_plugins_pre_' . $tab); //Used to override the general interface, Eg, install or plugin information. 36 /** 37 * Override the general interface on specific tabs. 38 * 39 * @since 2.7 40 */ 41 do_action('install_plugins_pre_' . $tab); 37 42 38 43 get_current_screen()->add_help_tab( array( 39 44 'id' => 'overview', … … 66 71 <?php $wp_list_table->views(); ?> 67 72 68 73 <br class="clear" /> 69 <?php do_action('install_plugins_' . $tab, $paged); ?> 74 <?php 75 /** 76 * Used for plugin tab routing. 77 * 78 * @since 2.7 79 * 80 * @param int $paged page number request parameter 81 */ 82 do_action('install_plugins_' . $tab, $paged); 83 ?> 70 84 </div> 71 85 <?php 72 86 include(ABSPATH . 'wp-admin/admin-footer.php');