2008-08-04 23:17:42 +02:00
|
|
|
<?php
|
2008-08-16 09:27:34 +02:00
|
|
|
/**
|
|
|
|
* Install plugin administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2008-08-04 23:17:42 +02:00
|
|
|
require_once('admin.php');
|
|
|
|
|
2008-08-05 19:06:42 +02:00
|
|
|
if ( ! current_user_can('install_plugins') )
|
|
|
|
wp_die(__('You do not have sufficient permissions to install plugins on this blog.'));
|
|
|
|
|
2008-08-04 23:17:42 +02:00
|
|
|
include(ABSPATH . 'wp-admin/includes/plugin-install.php');
|
|
|
|
|
|
|
|
$title = __('Install Plugins');
|
|
|
|
$parent_file = 'plugins.php';
|
|
|
|
|
|
|
|
wp_reset_vars( array('tab', 'paged') );
|
|
|
|
wp_enqueue_style( 'plugin-install' );
|
|
|
|
wp_enqueue_script( 'plugin-install' );
|
|
|
|
add_thickbox();
|
|
|
|
|
2008-10-14 02:01:51 +02:00
|
|
|
//These are the tabs which are shown on the page,
|
|
|
|
$tabs = array();
|
|
|
|
$tabs['dashboard'] = __('Start Page'); //TODO: Better name?
|
|
|
|
if ( 'search' == $tab )
|
|
|
|
$tabs['search'] = __('Search Results');
|
|
|
|
$tabs['featured'] = __('Featured');
|
|
|
|
$tabs['popular'] = __('Popular');
|
|
|
|
$tabs['new'] = __('Newest');
|
|
|
|
$tabs['updated'] = __('Recently Updated');
|
|
|
|
|
|
|
|
$nonmenu_tabs = array('install', 'plugin-information', 'upload'); //Valid actions to perform which do not have a Menu item.
|
2008-08-04 23:17:42 +02:00
|
|
|
|
|
|
|
$tabs = apply_filters('install_plugins_tabs', $tabs );
|
2008-10-14 02:01:51 +02:00
|
|
|
$nonmenu_tabs = apply_filters('install_plugins_nonmenu_tabs', $nonmenu_tabs);
|
2008-08-04 23:17:42 +02:00
|
|
|
|
2008-10-14 02:01:51 +02:00
|
|
|
//If a non-valid menu tab has been selected, And its not a non-menu action.
|
|
|
|
if( empty($tab) || ( ! isset($tabs[ $tab ]) && ! in_array($tab, (array)$nonmenu_tabs) ) ) {
|
2008-08-04 23:17:42 +02:00
|
|
|
$tab_actions = array_keys($tabs);
|
|
|
|
$tab = $tab_actions[0];
|
|
|
|
}
|
|
|
|
if( empty($paged) )
|
|
|
|
$paged = 1;
|
|
|
|
|
|
|
|
$body_id = $tab;
|
|
|
|
|
2008-10-14 02:01:51 +02:00
|
|
|
do_action('install_plugins_pre_' . $tab); //Used to override the general interface, Eg, install or plugin information.
|
2008-08-04 23:17:42 +02:00
|
|
|
|
|
|
|
include('admin-header.php');
|
|
|
|
?>
|
|
|
|
<div class="wrap">
|
2008-10-17 22:06:22 +02:00
|
|
|
<h2><?php echo wp_specialchars( $title ); ?></h2>
|
2008-10-17 22:02:03 +02:00
|
|
|
|
2008-08-04 23:17:42 +02:00
|
|
|
<ul class="subsubsub">
|
|
|
|
<?php
|
|
|
|
$display_tabs = array();
|
|
|
|
foreach ( (array)$tabs as $action => $text ) {
|
|
|
|
$sep = ( end($tabs) != $text ) ? ' | ' : '';
|
|
|
|
$class = ( $action == $tab ) ? ' class="current"' : '';
|
|
|
|
$href = admin_url('plugin-install.php?tab='. $action);
|
|
|
|
echo "\t\t<li><a href='$href'$class>$text</a>$sep</li>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2008-10-14 02:01:51 +02:00
|
|
|
<br class="clear" />
|
2008-08-04 23:17:42 +02:00
|
|
|
<?php do_action('install_plugins_' . $tab, $paged); ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
include('admin-footer.php');
|
2008-10-14 02:01:51 +02:00
|
|
|
?>
|