2004-03-25 07:05:52 +00:00
<? php
2008-08-16 07:27:34 +00:00
/**
* Plugins administration panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-19 03:03:06 +00:00
require_once ( 'admin.php' );
2004-03-25 07:05:52 +00:00
2009-04-04 11:15:39 +00:00
if ( isset ( $_POST [ 'clear-recent-list' ]) )
$action = 'clear-recent-list' ;
elseif ( isset ( $_GET [ 'action' ]) )
$action = $_GET [ 'action' ];
elseif ( isset ( $_POST [ 'action' ]) )
$action = $_POST [ 'action' ];
else
$action = false ;
2008-06-04 18:09:31 +00:00
2008-08-14 17:00:37 +00:00
$plugin = isset ( $_REQUEST [ 'plugin' ]) ? $_REQUEST [ 'plugin' ] : '' ;
2008-06-04 18:09:31 +00:00
2009-04-21 20:38:17 +00:00
$default_status = get_user_option ( 'plugins_last_view' );
if ( empty ( $default_status ) )
$default_status = 'all' ;
$status = isset ( $_REQUEST [ 'plugin_status' ]) ? $_REQUEST [ 'plugin_status' ] : $default_status ;
2009-04-21 19:17:44 +00:00
if ( ! in_array ( $status , array ( 'all' , 'active' , 'inactive' , 'recent' , 'upgrade' , 'search' )) )
$status = 'all' ;
2009-04-22 17:56:38 +00:00
if ( $status != $default_status && 'search' != $status )
2009-04-21 20:38:17 +00:00
update_usermeta ( $current_user -> ID , 'plugins_last_view' , $status );
2009-04-21 19:17:44 +00:00
$page = isset ( $_REQUEST [ 'paged' ]) ? $_REQUEST [ 'paged' ] : 1 ;
if ( ! empty ( $action ) ) {
switch ( $action ) {
2008-06-04 18:09:31 +00:00
case 'activate' :
check_admin_referer ( 'activate-plugin_' . $plugin );
$result = activate_plugin ( $plugin , 'plugins.php?error=true&plugin=' . $plugin );
if ( is_wp_error ( $result ) )
2008-10-24 05:47:55 +00:00
wp_die ( $result );
2008-06-04 18:09:31 +00:00
$recent = ( array ) get_option ( 'recently_activated' );
2008-10-24 05:47:55 +00:00
if ( isset ( $recent [ $plugin ]) ) {
2008-06-04 18:09:31 +00:00
unset ( $recent [ $plugin ]);
update_option ( 'recently_activated' , $recent );
}
2009-04-21 19:17:44 +00:00
wp_redirect ( "plugins.php?activate=true&plugin_status= $status &paged= $page " ); // overrides the ?error=true one above
2008-06-04 18:09:31 +00:00
exit ;
break ;
case 'activate-selected' :
2008-06-16 18:35:48 +00:00
check_admin_referer ( 'bulk-manage-plugins' );
2008-06-04 18:09:31 +00:00
activate_plugins ( $_POST [ 'checked' ], 'plugins.php?error=true' );
$recent = ( array ) get_option ( 'recently_activated' );
foreach ( ( array ) $_POST [ 'checked' ] as $plugin => $time ) {
2008-10-24 05:47:55 +00:00
if ( isset ( $recent [ $plugin ]) )
2008-06-04 18:09:31 +00:00
unset ( $recent [ $plugin ]);
}
if ( $recent != get_option ( 'recently_activated' ) ) //If array changed, update it.
update_option ( 'recently_activated' , $recent );
2008-01-09 09:37:27 +00:00
2009-04-21 19:17:44 +00:00
wp_redirect ( "plugins.php?activate-multi=true&plugin_status= $status &paged= $page " );
2008-06-04 18:09:31 +00:00
exit ;
break ;
case 'error_scrape' :
check_admin_referer ( 'plugin-activation-error_' . $plugin );
$valid = validate_plugin ( $plugin );
if ( is_wp_error ( $valid ) )
wp_die ( $valid );
error_reporting ( E_ALL ^ E_NOTICE );
@ ini_set ( 'display_errors' , true ); //Ensure that Fatal errors are displayed.
2008-10-26 06:33:33 +00:00
include ( WP_PLUGIN_DIR . '/' . $plugin );
do_action ( 'activate_' . $plugin );
2008-06-04 18:09:31 +00:00
exit ;
break ;
case 'deactivate' :
check_admin_referer ( 'deactivate-plugin_' . $plugin );
deactivate_plugins ( $plugin );
update_option ( 'recently_activated' , array ( $plugin => time ()) + ( array ) get_option ( 'recently_activated' ));
2009-04-21 19:17:44 +00:00
wp_redirect ( "plugins.php?deactivate=true&plugin_status= $status &paged= $page " );
2008-06-04 18:09:31 +00:00
exit ;
break ;
case 'deactivate-selected' :
2008-06-16 18:35:48 +00:00
check_admin_referer ( 'bulk-manage-plugins' );
2008-06-04 18:09:31 +00:00
deactivate_plugins ( $_POST [ 'checked' ]);
$deactivated = array ();
2008-10-24 05:47:55 +00:00
foreach ( ( array ) $_POST [ 'checked' ] as $plugin )
2008-06-04 18:09:31 +00:00
$deactivated [ $plugin ] = time ();
update_option ( 'recently_activated' , $deactivated + ( array ) get_option ( 'recently_activated' ));
2009-04-21 19:17:44 +00:00
wp_redirect ( "plugins.php?deactivate-multi=true&plugin_status= $status &paged= $page " );
2008-06-04 18:09:31 +00:00
exit ;
break ;
case 'delete-selected' :
2008-10-24 05:47:55 +00:00
if ( ! current_user_can ( 'delete_plugins' ) )
2008-06-06 19:21:35 +00:00
wp_die ( __ ( 'You do not have sufficient permissions to delete plugins for this blog.' ));
2008-08-09 05:36:14 +00:00
2008-06-16 18:35:48 +00:00
check_admin_referer ( 'bulk-manage-plugins' );
2008-08-09 05:36:14 +00:00
2008-06-16 18:35:48 +00:00
$plugins = $_REQUEST [ 'checked' ]; //$_POST = from the plugin form; $_GET = from the FTP details screen.
2008-06-04 18:09:31 +00:00
include ( ABSPATH . 'wp-admin/update.php' );
$parent_file = 'plugins.php' ;
2008-08-09 05:36:14 +00:00
2008-10-24 05:47:55 +00:00
if ( ! isset ( $_REQUEST [ 'verify-delete' ]) ) {
2008-06-16 18:35:48 +00:00
wp_enqueue_script ( 'jquery' );
require_once ( 'admin-header.php' );
?>
<div class="wrap">
2008-08-09 05:36:14 +00:00
<h2><?php _e('Delete Plugin(s)'); ?></h2>
2008-06-16 18:35:48 +00:00
<?php
$files_to_delete = $plugin_info = array();
2008-10-24 05:47:55 +00:00
foreach ( (array) $plugins as $plugin ) {
if ( '.' == dirname($plugin) ) {
2008-06-16 18:35:48 +00:00
$files_to_delete[] = WP_PLUGIN_DIR . '/' . $plugin;
if( $data = get_plugin_data(WP_PLUGIN_DIR . '/' . $plugin) )
$plugin_info[ $plugin ] = $data;
} else {
//Locate all the files in that folder:
$files = list_files( WP_PLUGIN_DIR . '/' . dirname($plugin) );
if( $files ) {
$files_to_delete = array_merge($files_to_delete, $files);
}
//Get plugins list from that folder
if ( $folder_plugins = get_plugins( '/' . dirname($plugin)) )
$plugin_info = array_merge($plugin_info, $folder_plugins);
}
}
?>
<p><?php _e('Deleting the selected plugins will remove the following plugin(s) and their files:'); ?></p>
2009-05-16 07:09:03 +00:00
<ul class="ul-disc">
2008-08-09 05:36:14 +00:00
<?php
2008-10-24 05:47:55 +00:00
foreach ( $plugin_info as $plugin )
2009-05-16 07:09:03 +00:00
echo '<li>', sprintf(__('<strong>%s</strong> by <em>%s</em>'), $plugin['Name'], $plugin['Author']), '</li>';
2008-06-16 18:35:48 +00:00
?>
</ul>
<p><?php _e('Are you sure you wish to delete these files?') ?></p>
<form method="post" action="<?php echo clean_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;">
<input type="hidden" name="verify-delete" value="1" />
2009-04-04 11:15:39 +00:00
<input type="hidden" name="action" value="delete-selected" />
2008-06-16 18:35:48 +00:00
<?php
2008-10-24 05:47:55 +00:00
foreach ( (array)$plugins as $plugin )
2009-05-05 19:43:53 +00:00
echo '<input type="hidden" name="checked[]" value="' . esc_attr($plugin) . '" />';
2008-06-16 18:35:48 +00:00
?>
<?php wp_nonce_field('bulk-manage-plugins') ?>
2009-05-05 19:43:53 +00:00
<input type="submit" name="submit" value="<?php esc_attr_e('Yes, Delete these files') ?>" class="button" />
2008-06-16 18:35:48 +00:00
</form>
<form method="post" action="<?php echo clean_url(wp_get_referer()); ?>" style="display:inline;">
2009-05-05 19:43:53 +00:00
<input type="submit" name="submit" value="<?php esc_attr_e('No, Return me to the plugin list') ?>" class="button" />
2008-06-16 18:35:48 +00:00
</form>
<p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p>
<div id="files-list" style="display:none;">
2009-05-16 07:09:03 +00:00
<ul class="code">
2008-06-16 18:35:48 +00:00
<?php
2008-10-24 05:47:55 +00:00
foreach ( (array)$files_to_delete as $file )
2008-08-04 21:01:09 +00:00
echo '<li>' . str_replace(WP_PLUGIN_DIR, '', $file) . '</li>';
2008-06-16 18:35:48 +00:00
?>
</ul>
2008-08-09 05:36:14 +00:00
</div>
2008-06-16 18:35:48 +00:00
</div>
<?php
require_once('admin-footer.php');
exit;
2008-06-30 23:12:18 +00:00
} //Endif verify-delete
2008-06-04 18:09:31 +00:00
$delete_result = delete_plugins($plugins);
2008-06-10 16:57:33 +00:00
wp_cache_delete('plugins', 'plugins');
2008-06-30 23:12:18 +00:00
break;
case 'clear-recent-list':
update_option('recently_activated', array());
2008-06-04 18:09:31 +00:00
break;
}
2004-03-25 21:04:36 +00:00
}
2008-08-04 21:01:09 +00:00
wp_enqueue_script('plugin-install');
2008-11-07 22:11:14 +00:00
add_thickbox();
2008-06-04 18:09:31 +00:00
2009-04-19 01:27:18 +00:00
$help = '<p>' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '</p>';
$help .= '<p>' . sprintf(__('If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the <code>%s</code> directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '</p>';
2009-04-19 01:11:13 +00:00
$help .= '<p>' . sprintf(__('You can find additional plugins for your site by using the new <a href="%1$s">Plugin Browser/Installer</a> functionality or by browsing the <a href="http://wordpress.org/extend/plugins/">WordPress Plugin Directory</a> directly and installing manually. To <em>manually</em> install a plugin you generally just need to upload the plugin file into your <code>%2$s</code> directory. Once a plugin has been installed, you may activate it here.'), 'plugin-install.php', WP_PLUGIN_DIR) . '</p>';
add_contextual_help('plugins', $help);
2006-11-18 07:31:29 +00:00
$title = __('Manage Plugins');
2004-03-25 07:05:52 +00:00
require_once('admin-header.php');
2008-07-29 23:10:12 +00:00
$invalid = validate_active_plugins();
2008-10-24 05:47:55 +00:00
if ( !empty($invalid) )
foreach ( $invalid as $plugin_file => $error )
2008-07-30 06:38:40 +00:00
echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), wp_specialchars($plugin_file), $error->get_error_message()) . '</p></div>';
2004-03-25 07:05:52 +00:00
?>
2004-04-14 19:04:14 +00:00
2007-01-25 20:45:20 +00:00
<?php if ( isset($_GET['error']) ) : ?>
2007-06-25 18:57:54 +00:00
<div id="message" class="updated fade"><p><?php _e('Plugin could not be activated because it triggered a <strong>fatal error</strong>.') ?></p>
<?php
2008-01-16 16:46:49 +00:00
if ( wp_verify_nonce($_GET['_error_nonce'], 'plugin-activation-error_' . $plugin) ) { ?>
2009-05-05 19:43:53 +00:00
<iframe style="border:0" width="100%" height="70px" src="<?php echo admin_url('plugins.php?action=error_scrape&plugin=' . esc_attr($plugin) . '&_wpnonce=' . esc_attr($_GET['_error_nonce'])); ?>"></iframe>
2007-06-25 18:57:54 +00:00
<?php
}
?>
</div>
2008-06-04 18:09:31 +00:00
<?php elseif ( 'delete-selected' == $action ) :
if ( is_wp_error($delete_result) ) : ?>
<div id="message" class="updated fade"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
<?php else : ?>
<div id="message" class="updated fade"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div>
<?php endif; ?>
2007-01-25 20:45:20 +00:00
<?php elseif ( isset($_GET['activate']) ) : ?>
<div id="message" class="updated fade"><p><?php _e('Plugin <strong>activated</strong>.') ?></p></div>
2008-06-04 18:09:31 +00:00
<?php elseif (isset($_GET['activate-multi'])) : ?>
<div id="message" class="updated fade"><p><?php _e('Selected plugins <strong>activated</strong>.'); ?></p></div>
2007-01-25 20:45:20 +00:00
<?php elseif ( isset($_GET['deactivate']) ) : ?>
<div id="message" class="updated fade"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
2008-06-04 18:09:31 +00:00
<?php elseif (isset($_GET['deactivate-multi'])) : ?>
<div id="message" class="updated fade"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
2004-04-14 19:04:14 +00:00
<?php endif; ?>
2004-03-25 07:05:52 +00:00
<div class="wrap">
2008-11-26 13:51:25 +00:00
<?php screen_icon(); ?>
2009-04-21 06:49:53 +00:00
<h2><?php echo wp_specialchars( $title ); ?></h2>
2004-03-25 07:05:52 +00:00
<?php
2008-06-30 23:12:18 +00:00
$all_plugins = get_plugins();
2009-04-19 18:50:22 +00:00
$search_plugins = array();
2008-06-04 18:09:31 +00:00
$active_plugins = array();
2008-06-30 23:12:18 +00:00
$inactive_plugins = array();
2008-06-04 18:09:31 +00:00
$recent_plugins = array();
2009-04-19 18:50:22 +00:00
$recently_activated = get_option('recently_activated', array());
2009-04-19 01:22:02 +00:00
$upgrade_plugins = array();
2009-03-07 02:07:24 +00:00
set_transient( 'plugin_slugs', array_keys($all_plugins), 86400 );
2004-11-26 02:29:45 +00:00
2009-03-07 02:07:24 +00:00
// Clean out any plugins which were deactivated over a week ago.
2008-10-24 05:47:55 +00:00
foreach ( $recently_activated as $key => $time )
if ( $time + (7*24*60*60) < time() ) //1 week
2008-06-04 18:09:31 +00:00
unset($recently_activated[ $key ]);
2008-10-24 05:47:55 +00:00
if ( $recently_activated != get_option('recently_activated') ) //If array changed, update it.
2008-06-04 18:09:31 +00:00
update_option('recently_activated', $recently_activated);
2009-04-19 01:22:02 +00:00
$current = get_transient( 'update_plugins' );
2008-02-27 19:18:21 +00:00
2008-10-24 05:47:55 +00:00
foreach ( (array)$all_plugins as $plugin_file => $plugin_data) {
2008-06-04 18:09:31 +00:00
2008-10-22 00:08:22 +00:00
//Translate, Apply Markup, Sanitize HTML
2009-04-19 18:45:09 +00:00
$plugin_data = _get_plugin_data_markup_translate($plugin_file, $plugin_data, true, true);
2009-04-19 18:50:22 +00:00
$all_plugins[ $plugin_file ] = $plugin_data;
2008-06-04 18:09:31 +00:00
2008-06-30 23:12:18 +00:00
//Filter into individual sections
2008-06-04 18:09:31 +00:00
if ( is_plugin_active($plugin_file) ) {
$active_plugins[ $plugin_file ] = $plugin_data;
} else {
2009-04-19 01:11:13 +00:00
if ( isset( $recently_activated[ $plugin_file ] ) ) // Was the plugin recently activated?
2008-06-04 18:09:31 +00:00
$recent_plugins[ $plugin_file ] = $plugin_data;
2009-04-19 01:11:13 +00:00
$inactive_plugins[ $plugin_file ] = $plugin_data;
2008-06-04 18:09:31 +00:00
}
2009-04-19 01:22:02 +00:00
if ( isset( $current->response[ $plugin_file ] ) )
$upgrade_plugins[ $plugin_file ] = $plugin_data;
2008-06-04 18:09:31 +00:00
}
2009-04-19 18:50:22 +00:00
$total_all_plugins = count($all_plugins);
2009-04-19 01:11:13 +00:00
$total_inactive_plugins = count($inactive_plugins);
$total_active_plugins = count($active_plugins);
$total_recent_plugins = count($recent_plugins);
2009-04-19 01:22:02 +00:00
$total_upgrade_plugins = count($upgrade_plugins);
2009-04-19 01:11:13 +00:00
2009-04-19 18:50:22 +00:00
//Searching.
if ( isset($_GET['s']) ) {
function _search_plugins_filter_callback($plugin) {
static $term;
if ( is_null($term) )
$term = stripslashes($_GET['s']);
if ( stripos($plugin['Name'], $term) !== false ||
stripos($plugin['Description'], $term) !== false ||
stripos($plugin['Author'], $term) !== false ||
stripos($plugin['PluginURI'], $term) !== false ||
stripos($plugin['AuthorURI'], $term) !== false ||
stripos($plugin['Version'], $term) !== false )
return true;
else
return false;
}
2009-04-21 19:17:44 +00:00
$status = 'search';
2009-04-19 18:50:22 +00:00
$search_plugins = array_filter($all_plugins, '_search_plugins_filter_callback');
$total_search_plugins = count($search_plugins);
}
2009-04-19 01:11:13 +00:00
$plugin_array_name = "${status}_plugins";
$plugins = &$$plugin_array_name;
2008-02-27 19:18:21 +00:00
2009-04-19 18:50:22 +00:00
//Paging.
$total_this_page = "total_{$status}_plugins";
$total_this_page = $$total_this_page;
2009-04-21 06:49:53 +00:00
$plugins_per_page = get_user_option('plugins_per_page');
if ( empty($plugins_per_page) )
2009-05-13 04:26:40 +00:00
$plugins_per_page = 999;
2009-04-21 06:49:53 +00:00
$plugins_per_page = apply_filters('plugins_per_page', $plugins_per_page);
2009-04-19 18:50:22 +00:00
$start = ($page - 1) * $plugins_per_page;
$page_links = paginate_links( array(
'base' => add_query_arg( 'paged', '%#%' ),
'format' => '',
'prev_text' => __('«'),
'next_text' => __('»'),
'total' => ceil($total_this_page / $plugins_per_page),
'current' => $page
));
$page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
number_format_i18n( $start + 1 ),
number_format_i18n( min( $page * $plugins_per_page, $total_this_page ) ),
'<span class="total-type-count">' . number_format_i18n( $total_this_page ) . '</span>',
$page_links
);
2008-10-10 18:21:16 +00:00
/**
* @ignore
*
* @param array $plugins
* @param string $context
*/
2008-06-04 18:09:31 +00:00
function print_plugins_table($plugins, $context = '') {
2009-04-21 19:17:44 +00:00
global $page;
2008-06-04 18:09:31 +00:00
?>
2008-11-17 18:01:00 +00:00
<table class="widefat" cellspacing="0" id="<?php echo $context ?>-plugins-table">
2006-05-10 20:35:10 +00:00
<thead>
2004-03-25 07:05:52 +00:00
<tr>
2009-04-17 05:30:09 +00:00
<th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
<th scope="col" class="manage-column"><?php _e('Plugin'); ?></th>
<th scope="col" class="manage-column num"><?php _e('Version'); ?></th>
<th scope="col" class="manage-column"><?php _e('Description'); ?></th>
2004-03-25 07:05:52 +00:00
</tr>
2006-05-10 20:35:10 +00:00
</thead>
2008-12-09 18:03:31 +00:00
2008-09-29 09:26:21 +00:00
<tfoot>
<tr>
2009-04-17 05:30:09 +00:00
<th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
<th scope="col" class="manage-column"><?php _e('Plugin'); ?></th>
<th scope="col" class="manage-column num"><?php _e('Version'); ?></th>
<th scope="col" class="manage-column"><?php _e('Description'); ?></th>
2008-09-29 09:26:21 +00:00
</tr>
</tfoot>
2008-12-09 18:03:31 +00:00
2008-06-04 18:09:31 +00:00
<tbody class="plugins">
2004-03-25 07:05:52 +00:00
<?php
2006-11-29 09:22:49 +00:00
2008-10-24 05:47:55 +00:00
if ( empty($plugins) ) {
2008-06-04 18:09:31 +00:00
echo '<tr>
<td colspan="6">' . __('No plugins to show') . '</td>
</tr>';
}
2008-10-24 05:47:55 +00:00
foreach ( (array)$plugins as $plugin_file => $plugin_data) {
2009-04-17 05:30:09 +00:00
$actions = array();
2009-04-19 18:53:05 +00:00
$is_active = is_plugin_active($plugin_file);
2006-11-29 09:22:49 +00:00
2009-04-19 18:53:05 +00:00
if ( $is_active )
2009-04-21 19:17:44 +00:00
$actions[] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&plugin=' . $plugin_file . '&plugin_status=' . $context . '&paged=' . $page, 'deactivate-plugin_' . $plugin_file) . '" title="' . __('Deactivate this plugin') . '">' . __('Deactivate') . '</a>';
2008-07-18 03:16:53 +00:00
else //Inactive or Recently deactivated
2009-04-21 19:17:44 +00:00
$actions[] = '<a href="' . wp_nonce_url('plugins.php?action=activate&plugin=' . $plugin_file . '&plugin_status=' . $context . '&paged=' . $page, 'activate-plugin_' . $plugin_file) . '" title="' . __('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>';
2006-11-29 09:22:49 +00:00
2008-06-04 18:09:31 +00:00
if ( current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
2009-04-17 05:30:09 +00:00
$actions[] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
2006-10-04 06:48:52 +00:00
2009-04-17 05:30:09 +00:00
$actions = apply_filters( 'plugin_action_links', $actions, $plugin_file, $plugin_data, $context );
$actions = apply_filters( "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
$action_count = count($actions);
2009-04-19 18:53:05 +00:00
$class = $is_active ? 'active' : 'inactive';
2004-03-25 07:05:52 +00:00
echo "
2009-04-19 01:11:13 +00:00
<tr class='$class'>
2009-05-05 19:43:53 +00:00
<th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
2009-04-17 05:30:09 +00:00
<td class='plugin-title'><strong>{$plugin_data['Title']}</strong>";
$i = 0;
echo '<div class="row-actions">';
foreach ( $actions as $action => $link ) {
++$i;
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
echo "<span class='$action'>$link$sep</span>";
}
echo '</div>';
echo "</td>
2005-08-07 10:45:06 +00:00
<td class='vers'>{$plugin_data['Version']}</td>
2009-04-17 05:30:09 +00:00
<td class='desc'><p>{$plugin_data['Description']}</p>";
2008-08-09 05:36:14 +00:00
echo '</td>
2008-06-04 18:09:31 +00:00
</tr>';
do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
2008-11-26 15:23:51 +00:00
do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
2004-03-25 07:05:52 +00:00
}
?>
2008-02-27 19:18:21 +00:00
</tbody>
2004-03-25 07:05:52 +00:00
</table>
2008-08-09 05:36:14 +00:00
<?php
2008-06-04 18:09:31 +00:00
} //End print_plugins_table()
2008-10-25 19:14:47 +00:00
/**
* @ignore
*
* @param string $context
*/
function print_plugin_actions($context) {
?>
<div class="alignleft actions">
<select name="action">
2008-12-04 21:57:56 +00:00
<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
2009-04-20 19:23:33 +00:00
<?php if ( 'active' != $context ) : ?>
2008-10-25 19:14:47 +00:00
<option value="activate-selected"><?php _e('Activate'); ?></option>
<?php endif; ?>
2009-04-20 19:23:33 +00:00
<?php if ( 'inactive' != $context && 'recent' != $context ) : ?>
2008-10-25 19:14:47 +00:00
<option value="deactivate-selected"><?php _e('Deactivate'); ?></option>
2008-10-26 22:06:58 +00:00
<?php endif; ?>
2009-04-20 19:23:33 +00:00
<?php if ( current_user_can('delete_plugins') && ( 'active' != $context ) ) : ?>
2008-10-25 19:14:47 +00:00
<option value="delete-selected"><?php _e('Delete'); ?></option>
<?php endif; ?>
</select>
2009-05-05 19:43:53 +00:00
<input type="submit" name="doaction_active" value="<?php esc_attr_e('Apply'); ?>" class="button-secondary action" />
2008-10-26 22:06:58 +00:00
<?php if( 'recent' == $context ) : ?>
2009-05-05 19:43:53 +00:00
<input type="submit" name="clear-recent-list" value="<?php esc_attr_e('Clear List') ?>" class="button-secondary" />
2008-10-25 19:14:47 +00:00
<?php endif; ?>
2008-12-09 18:03:31 +00:00
</div>
2008-10-25 19:14:47 +00:00
<?php
}
2004-03-25 07:05:52 +00:00
?>
2005-05-09 11:37:36 +00:00
2009-04-19 18:50:22 +00:00
<form method="get" action="">
<p class="search-box">
2009-05-12 22:40:56 +00:00
<label class="screen-reader-text" for="plugin-search-input"><?php _e( 'Search Plugins' ); ?>:</label>
2009-04-19 18:50:22 +00:00
<input type="text" id="plugin-search-input" name="s" value="<?php _admin_search_query(); ?>" />
2009-05-05 19:43:53 +00:00
<input type="submit" value="<?php esc_attr_e( 'Search Plugins' ); ?>" class="button" />
2009-04-19 18:50:22 +00:00
</p>
</form>
2008-06-04 18:09:31 +00:00
<form method="post" action="<?php echo admin_url('plugins.php') ?>">
2008-06-16 18:35:48 +00:00
<?php wp_nonce_field('bulk-manage-plugins') ?>
2009-05-05 19:43:53 +00:00
<input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
<input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
2008-06-04 18:09:31 +00:00
2009-04-19 01:11:13 +00:00
<ul class="subsubsub">
<?php
$status_links = array();
$class = ( 'all' == $status ) ? ' class="current"' : '';
2009-04-30 16:22:14 +00:00
$status_links[] = "<li><a href='plugins.php?plugin_status=all' $class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_all_plugins, 'plugins' ), number_format_i18n( $total_all_plugins ) ) . '</a>';
2009-04-19 01:11:13 +00:00
if ( ! empty($active_plugins) ) {
$class = ( 'active' == $status ) ? ' class="current"' : '';
$status_links[] = "<li><a href='plugins.php?plugin_status=active' $class>" . sprintf( _n( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', $total_active_plugins ), number_format_i18n( $total_active_plugins ) ) . '</a>';
}
if ( ! empty($recent_plugins) ) {
$class = ( 'recent' == $status ) ? ' class="current"' : '';
$status_links[] = "<li><a href='plugins.php?plugin_status=recent' $class>" . sprintf( _n( 'Recently Active <span class="count">(%s)</span>', 'Recently Active <span class="count">(%s)</span>', $total_recent_plugins ), number_format_i18n( $total_recent_plugins ) ) . '</a>';
}
if ( ! empty($inactive_plugins) ) {
$class = ( 'inactive' == $status ) ? ' class="current"' : '';
$status_links[] = "<li><a href='plugins.php?plugin_status=inactive' $class>" . sprintf( _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $total_inactive_plugins ), number_format_i18n( $total_inactive_plugins ) ) . '</a>';
}
2009-04-19 01:22:02 +00:00
if ( ! empty($upgrade_plugins) ) {
$class = ( 'upgrade' == $status ) ? ' class="current"' : '';
$status_links[] = "<li><a href='plugins.php?plugin_status=upgrade' $class>" . sprintf( _n( 'Upgrade Available <span class="count">(%s)</span>', 'Upgrade Available <span class="count">(%s)</span>', $total_upgrade_plugins ), number_format_i18n( $total_upgrade_plugins ) ) . '</a>';
}
2009-04-19 18:50:22 +00:00
if ( ! empty($search_plugins) ) {
$class = ( 'search' == $status ) ? ' class="current"' : '';
$term = isset($_REQUEST['s']) ? urlencode(stripslashes($_REQUEST['s'])) : '';
$status_links[] = "<li><a href='plugins.php?s=$term' $class>" . sprintf( _n( 'Search Results <span class="count">(%s)</span>', 'Search Results <span class="count">(%s)</span>', $total_search_plugins ), number_format_i18n( $total_search_plugins ) ) . '</a>';
}
2009-04-19 01:11:13 +00:00
echo implode( " |</li>\n", $status_links ) . '</li>';
unset( $status_links );
?>
</ul>
2008-06-04 18:09:31 +00:00
<div class="tablenav">
2009-04-19 18:50:22 +00:00
<?php
if ( $page_links )
echo '<div class="tablenav-pages">', $page_links_text, '</div>';
print_plugin_actions($status);
?>
2008-06-04 18:09:31 +00:00
</div>
2008-10-03 00:13:12 +00:00
<div class="clear"></div>
2009-04-19 18:50:22 +00:00
<?php
if ( $total_this_page > $plugins_per_page )
$plugins = array_slice($plugins, $start, $plugins_per_page);
2009-04-20 18:18:39 +00:00
2009-04-19 18:50:22 +00:00
print_plugins_table($plugins, $status);
?>
<div class="tablenav">
<?php
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links_text</div>";
?>
<div class="alignleft actions">
<!-- TODO lower bulk actions. -->
</div>
</div>
2008-06-04 18:09:31 +00:00
</form>
2008-06-30 23:12:18 +00:00
<?php if ( empty($all_plugins) ) : ?>
<p><?php _e('You do not appear to have any plugins available at this time.') ?></p>
<?php endif; ?>
2004-03-25 07:05:52 +00:00
</div>
<?php
include('admin-footer.php');
2009-04-17 05:30:09 +00:00
?>