2010-10-25 02:57:43 +00:00
<? php
/**
2015-10-17 15:13:25 +00:00
* List Table API: WP_Theme_Install_List_Table class
2010-10-25 02:57:43 +00:00
*
* @package WordPress
2015-10-17 15:13:25 +00:00
* @subpackage Administration
* @since 3.1.0
*/
/**
* Core class used to implement displaying themes to install in a list table.
*
2010-10-25 04:04:18 +00:00
* @since 3.1.0
2011-01-16 21:47:24 +00:00
* @access private
2015-10-17 15:13:25 +00:00
*
2016-07-01 10:27:32 +00:00
* @see WP_Themes_List_Table
2010-10-25 02:57:43 +00:00
*/
2012-03-02 22:31:15 +00:00
class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
2010-10-25 02:57:43 +00:00
2014-05-19 01:17:15 +00:00
public $features = array ();
2012-02-09 17:20:26 +00:00
2015-05-29 20:17:26 +00:00
/**
*
* @return bool
*/
2014-05-19 01:17:15 +00:00
public function ajax_user_can () {
2012-03-02 22:31:15 +00:00
return current_user_can ( 'install_themes' );
2010-10-25 02:57:43 +00:00
}
2015-05-28 21:41:30 +00:00
/**
*
* @global array $tabs
* @global string $tab
* @global int $paged
* @global string $type
* @global array $theme_field_defaults
*/
2014-05-19 01:17:15 +00:00
public function prepare_items () {
2010-10-25 02:57:43 +00:00
include ( ABSPATH . 'wp-admin/includes/theme-install.php' );
2012-03-02 22:31:15 +00:00
global $tabs , $tab , $paged , $type , $theme_field_defaults ;
2012-03-02 22:26:58 +00:00
wp_reset_vars ( array ( 'tab' ) );
2012-03-02 22:09:26 +00:00
2012-03-02 22:31:15 +00:00
$search_terms = array ();
$search_string = '' ;
if ( ! empty ( $_REQUEST [ 's' ] ) ){
2013-03-01 17:00:25 +00:00
$search_string = strtolower ( wp_unslash ( $_REQUEST [ 's' ] ) );
2012-03-02 22:31:15 +00:00
$search_terms = array_unique ( array_filter ( array_map ( 'trim' , explode ( ',' , $search_string ) ) ) );
}
if ( ! empty ( $_REQUEST [ 'features' ] ) )
$this -> features = $_REQUEST [ 'features' ];
2010-10-25 02:57:43 +00:00
$paged = $this -> get_pagenum ();
2011-09-15 04:26:26 +00:00
$per_page = 36 ;
2010-10-25 02:57:43 +00:00
// These are the tabs which are shown on the page,
$tabs = array ();
$tabs [ 'dashboard' ] = __ ( 'Search' );
2015-09-22 06:06:25 +00:00
if ( 'search' === $tab )
2010-10-25 02:57:43 +00:00
$tabs [ 'search' ] = __ ( 'Search Results' );
$tabs [ 'upload' ] = __ ( 'Upload' );
2014-05-06 12:34:14 +00:00
$tabs [ 'featured' ] = _x ( 'Featured' , 'themes' );
//$tabs['popular'] = _x( 'Popular', 'themes' );
$tabs [ 'new' ] = _x ( 'Latest' , 'themes' );
$tabs [ 'updated' ] = _x ( 'Recently Updated' , 'themes' );
2010-10-25 02:57:43 +00:00
$nonmenu_tabs = array ( 'theme-information' ); // Valid actions to perform which do not have a Menu item.
2014-07-04 23:58:15 +00:00
/** This filter is documented in wp-admin/theme-install.php */
2010-10-25 02:57:43 +00:00
$tabs = apply_filters ( 'install_themes_tabs' , $tabs );
2014-03-06 13:44:14 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters tabs not associated with a menu item on the Install Themes screen.
2014-03-06 13:44:14 +00:00
*
* @since 2.8.0
*
* @param array $nonmenu_tabs The tabs that don't have a menu item on
* the Install Themes screen.
*/
2010-10-25 02:57:43 +00:00
$nonmenu_tabs = apply_filters ( 'install_themes_nonmenu_tabs' , $nonmenu_tabs );
2012-12-20 15:55:32 +00:00
// If a non-valid menu tab has been selected, And it's not a non-menu action.
2010-10-25 02:57:43 +00:00
if ( empty ( $tab ) || ( ! isset ( $tabs [ $tab ] ) && ! in_array ( $tab , ( array ) $nonmenu_tabs ) ) )
$tab = key ( $tabs );
$args = array ( 'page' => $paged , 'per_page' => $per_page , 'fields' => $theme_field_defaults );
switch ( $tab ) {
case 'search' :
2013-03-01 17:00:25 +00:00
$type = isset ( $_REQUEST [ 'type' ] ) ? wp_unslash ( $_REQUEST [ 'type' ] ) : 'term' ;
2010-10-25 02:57:43 +00:00
switch ( $type ) {
case 'tag' :
2012-03-02 22:32:29 +00:00
$args [ 'tag' ] = array_map ( 'sanitize_key' , $search_terms );
2010-10-25 02:57:43 +00:00
break ;
case 'term' :
2012-03-02 22:31:15 +00:00
$args [ 'search' ] = $search_string ;
2010-10-25 02:57:43 +00:00
break ;
case 'author' :
2012-03-02 22:31:15 +00:00
$args [ 'author' ] = $search_string ;
2010-10-25 02:57:43 +00:00
break ;
}
2012-03-02 22:31:15 +00:00
if ( ! empty ( $this -> features ) ) {
$args [ 'tag' ] = $this -> features ;
$_REQUEST [ 's' ] = implode ( ',' , $this -> features );
2010-10-25 02:57:43 +00:00
$_REQUEST [ 'type' ] = 'tag' ;
}
2012-04-25 19:37:19 +00:00
add_action ( 'install_themes_table_header' , 'install_theme_search_form' , 10 , 0 );
2010-10-25 02:57:43 +00:00
break ;
case 'featured' :
2014-07-17 09:14:16 +00:00
// case 'popular':
2010-10-25 02:57:43 +00:00
case 'new' :
case 'updated' :
$args [ 'browse' ] = $tab ;
break ;
default :
$args = false ;
2013-08-21 06:52:12 +00:00
break ;
2010-10-25 02:57:43 +00:00
}
2014-03-06 13:44:14 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters API request arguments for each Install Themes screen tab.
2014-03-06 13:44:14 +00:00
*
2014-11-30 11:28:24 +00:00
* The dynamic portion of the hook name, `$tab`, refers to the theme install
2014-03-06 13:44:14 +00:00
* tabs. Default tabs are 'dashboard', 'search', 'upload', 'featured',
* 'new', and 'updated'.
*
* @since 3.7.0
*
* @param array $args An array of themes API arguments.
*/
2016-08-22 18:25:31 +00:00
$args = apply_filters ( "install_themes_table_api_args_ { $tab } " , $args );
2013-08-21 06:52:12 +00:00
2012-03-02 22:31:15 +00:00
if ( ! $args )
2010-10-25 02:57:43 +00:00
return ;
$api = themes_api ( 'query_themes' , $args );
if ( is_wp_error ( $api ) )
2011-01-12 00:18:23 +00:00
wp_die ( $api -> get_error_message () . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __ ( 'Try again' ) . '</a>' );
2010-10-25 02:57:43 +00:00
$this -> items = $api -> themes ;
$this -> set_pagination_args ( array (
'total_items' => $api -> info [ 'results' ],
2014-02-21 18:30:14 +00:00
'per_page' => $args [ 'per_page' ],
2012-03-02 22:31:15 +00:00
'infinite_scroll' => true ,
2010-10-25 02:57:43 +00:00
) );
}
2015-05-29 21:32:24 +00:00
/**
* @access public
*/
2014-05-19 01:17:15 +00:00
public function no_items () {
2010-10-25 02:57:43 +00:00
_e ( 'No themes match your request.' );
}
2015-05-28 21:41:30 +00:00
/**
*
* @global array $tabs
* @global string $tab
* @return array
*/
2014-05-19 01:17:15 +00:00
protected function get_views () {
2010-10-25 02:57:43 +00:00
global $tabs , $tab ;
$display_tabs = array ();
foreach ( ( array ) $tabs as $action => $text ) {
2015-09-22 06:06:25 +00:00
$class = ( $action === $tab ) ? ' class="current"' : '' ;
2010-10-25 02:57:43 +00:00
$href = self_admin_url ( 'theme-install.php?tab=' . $action );
2010-12-03 18:51:24 +00:00
$display_tabs [ 'theme-install-' . $action ] = "<a href=' $href ' $class > $text </a>" ;
2010-10-25 02:57:43 +00:00
}
return $display_tabs ;
}
2015-05-29 21:32:24 +00:00
/**
* @access public
*/
2014-05-19 01:17:15 +00:00
public function display () {
2012-02-09 17:20:26 +00:00
wp_nonce_field ( "fetch-list-" . get_class ( $this ), '_ajax_fetch_list_nonce' );
2010-10-25 02:57:43 +00:00
?>
2011-09-15 04:26:26 +00:00
<div class="tablenav top themes">
2010-10-25 02:57:43 +00:00
<div class="alignleft actions">
2014-03-06 13:44:14 +00:00
<?php
/**
* Fires in the Install Themes list table header.
*
* @since 2.8.0
*/
do_action( 'install_themes_table_header' );
?>
2010-10-25 02:57:43 +00:00
</div>
<?php $this->pagination( 'top' ); ?>
<br class="clear" />
</div>
2011-09-15 04:26:26 +00:00
<div id="availablethemes">
<?php $this->display_rows_or_placeholder(); ?>
</div>
2010-10-25 02:57:43 +00:00
2012-03-02 22:31:15 +00:00
<?php
2015-03-07 23:03:27 +00:00
$this->tablenav( 'bottom' );
2010-10-25 02:57:43 +00:00
}
2015-05-29 21:32:24 +00:00
/**
* @access public
*/
2014-07-13 22:09:16 +00:00
public function display_rows() {
2010-10-25 02:57:43 +00:00
$themes = $this->items;
2012-03-07 18:29:36 +00:00
foreach ( $themes as $theme ) {
2010-10-25 02:57:43 +00:00
?>
2012-03-07 18:24:34 +00:00
<div class="available-theme installable-theme"><?php
2012-03-07 18:29:36 +00:00
$this->single_row( $theme );
2011-09-15 04:26:26 +00:00
?></div>
<?php } // end foreach $theme_names
2012-03-07 17:35:17 +00:00
2012-03-07 18:24:34 +00:00
$this->theme_installer();
}
2013-11-11 13:32:10 +00:00
/**
2012-03-07 18:24:34 +00:00
* Prints a theme from the WordPress.org API.
*
2015-05-28 21:41:30 +00:00
* @global array $themes_allowedtags
*
2012-03-07 18:24:34 +00:00
* @param object $theme An object that contains theme data returned by the WordPress.org API.
*
* Example theme data:
* object(stdClass)[59]
2013-05-22 21:01:57 +00:00
* public 'name' => string 'Magazine Basic'
* public 'slug' => string 'magazine-basic'
* public 'version' => string '1.1'
* public 'author' => string 'tinkerpriest'
* public 'preview_url' => string 'http://wp-themes.com/?magazine-basic'
* public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png'
2012-03-07 18:24:34 +00:00
* public 'rating' => float 80
* public 'num_ratings' => int 1
2013-05-22 21:01:57 +00:00
* public 'homepage' => string 'http://wordpress.org/themes/magazine-basic'
2016-02-25 12:53:27 +00:00
* public 'description' => string 'A basic magazine style layout with a fully customizable layout through a back-end interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.'
2013-05-22 21:01:57 +00:00
* public 'download_link' => string 'http://wordpress.org/themes/download/magazine-basic.1.1.zip'
2012-03-07 18:24:34 +00:00
*/
2014-07-13 22:09:16 +00:00
public function single_row( $theme ) {
2012-03-07 18:24:34 +00:00
global $themes_allowedtags;
if ( empty( $theme ) )
return;
$name = wp_kses( $theme->name, $themes_allowedtags );
$author = wp_kses( $theme->author, $themes_allowedtags );
$preview_title = sprintf( __('Preview “%s”'), $name );
$preview_url = add_query_arg( array(
'tab' => 'theme-information',
'theme' => $theme->slug,
2014-02-25 00:01:14 +00:00
), self_admin_url( 'theme-install.php' ) );
2012-03-07 18:24:34 +00:00
2012-05-06 23:06:47 +00:00
$actions = array();
$install_url = add_query_arg( array(
'action' => 'install-theme',
'theme' => $theme->slug,
), self_admin_url( 'update.php' ) );
2012-05-09 15:01:49 +00:00
$update_url = add_query_arg( array(
'action' => 'upgrade-theme',
'theme' => $theme->slug,
), self_admin_url( 'update.php' ) );
$status = $this->_get_theme_status( $theme );
switch ( $status ) {
case 'update_available':
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
break;
case 'newer_installed':
case 'latest_installed':
$actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
break;
2014-05-30 17:58:15 +00:00
case 'install':
default:
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
break;
2012-05-09 15:01:49 +00:00
}
2012-05-06 23:06:47 +00:00
2012-05-16 21:08:10 +00:00
$actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
2012-05-06 23:06:47 +00:00
2014-03-06 13:44:14 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters the install action links for a theme in the Install Themes list table.
2014-03-06 13:44:14 +00:00
*
* @since 3.4.0
*
* @param array $actions An array of theme action hyperlinks. Defaults are
* links to Install Now, Preview, and Details.
* @param WP_Theme $theme Theme object.
*/
2012-05-06 23:06:47 +00:00
$actions = apply_filters( 'theme_install_actions', $actions, $theme );
2012-03-07 18:24:34 +00:00
?>
2012-05-06 23:06:47 +00:00
<a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
2015-11-07 16:12:27 +00:00
<img src="<?php echo esc_url( $theme->screenshot_url ); ?>" width="150" alt="" />
2012-03-07 18:24:34 +00:00
</a>
2012-04-10 00:15:13 +00:00
<h3><?php echo $name; ?></h3>
<div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
2012-03-07 18:24:34 +00:00
2012-05-06 23:06:47 +00:00
<div class="action-links">
<ul>
<?php foreach ( $actions as $action ): ?>
<li><?php echo $action; ?></li>
<?php endforeach; ?>
2012-07-24 00:15:15 +00:00
<li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
2012-05-06 23:06:47 +00:00
</ul>
</div>
2012-03-07 18:24:34 +00:00
<?php
$this->install_theme_info( $theme );
}
2013-11-11 13:32:10 +00:00
/**
2012-03-07 18:24:34 +00:00
* Prints the wrapper for the theme installer.
*/
2014-05-19 01:17:15 +00:00
public function theme_installer() {
2012-03-07 17:35:17 +00:00
?>
2012-06-06 21:45:17 +00:00
<div id="theme-installer" class="wp-full-overlay expanded">
2012-03-07 17:35:17 +00:00
<div class="wp-full-overlay-sidebar">
2012-06-01 15:03:50 +00:00
<div class="wp-full-overlay-header">
2013-11-22 04:03:10 +00:00
<a href="#" class="close-full-overlay button-secondary"><?php _e( 'Close' ); ?></a>
<span class="theme-install"></span>
2012-06-01 15:03:50 +00:00
</div>
2012-05-15 01:03:31 +00:00
<div class="wp-full-overlay-sidebar-content">
<div class="install-theme-info"></div>
</div>
2012-06-01 15:03:50 +00:00
<div class="wp-full-overlay-footer">
2015-07-10 21:22:26 +00:00
<button type="button" class="collapse-sidebar button-secondary" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
2012-06-01 15:03:50 +00:00
<span class="collapse-sidebar-arrow"></span>
2015-07-10 21:22:26 +00:00
<span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
</button>
2012-06-01 15:03:50 +00:00
</div>
2012-03-07 17:35:17 +00:00
</div>
<div class="wp-full-overlay-main"></div>
</div>
<?php
2010-10-25 02:57:43 +00:00
}
2012-03-02 22:31:15 +00:00
2013-11-11 13:32:10 +00:00
/**
2012-03-07 18:24:34 +00:00
* Prints the wrapper for the theme installer with a provided theme's data.
* Used to make the theme installer work for no-js.
*
* @param object $theme - A WordPress.org Theme API object.
*/
2014-05-19 01:17:15 +00:00
public function theme_installer_single( $theme ) {
2012-03-07 18:24:34 +00:00
?>
<div id="theme-installer" class="wp-full-overlay single-theme">
<div class="wp-full-overlay-sidebar">
<?php $this->install_theme_info( $theme ); ?>
</div>
<div class="wp-full-overlay-main">
<iframe src="<?php echo esc_url( $theme->preview_url ); ?>"></iframe>
</div>
</div>
<?php
}
2013-11-11 13:32:10 +00:00
/**
2012-03-07 18:24:34 +00:00
* Prints the info for a theme (to be used in the theme installer modal).
*
2015-05-28 21:41:30 +00:00
* @global array $themes_allowedtags
*
2012-03-07 18:24:34 +00:00
* @param object $theme - A WordPress.org Theme API object.
*/
2014-05-19 01:17:15 +00:00
public function install_theme_info( $theme ) {
2012-03-07 18:24:34 +00:00
global $themes_allowedtags;
if ( empty( $theme ) )
return;
$name = wp_kses( $theme->name, $themes_allowedtags );
$author = wp_kses( $theme->author, $themes_allowedtags );
$install_url = add_query_arg( array(
'action' => 'install-theme',
'theme' => $theme->slug,
), self_admin_url( 'update.php' ) );
2012-05-09 15:01:49 +00:00
$update_url = add_query_arg( array(
'action' => 'upgrade-theme',
'theme' => $theme->slug,
), self_admin_url( 'update.php' ) );
$status = $this->_get_theme_status( $theme );
2012-03-07 18:24:34 +00:00
?>
2012-05-09 15:01:49 +00:00
<div class="install-theme-info"><?php
switch ( $status ) {
case 'update_available':
echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
break;
case 'newer_installed':
case 'latest_installed':
echo '<span class="theme-install" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
break;
2014-05-30 17:58:15 +00:00
case 'install':
default:
echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>';
break;
2012-05-09 15:01:49 +00:00
} ?>
2012-03-07 18:24:34 +00:00
<h3 class="theme-name"><?php echo $name; ?></h3>
<span class="theme-by"><?php printf( __( 'By %s' ), $author ); ?></span>
<?php if ( isset( $theme->screenshot_url ) ): ?>
2015-11-07 16:12:27 +00:00
<img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" alt="" />
2012-03-07 18:24:34 +00:00
<?php endif; ?>
2012-05-06 23:06:47 +00:00
<div class="theme-details">
2013-11-26 02:25:21 +00:00
<?php wp_star_rating( array( 'rating' => $theme->rating, 'type' => 'percent', 'number' => $theme->num_ratings ) ); ?>
2012-05-06 23:06:47 +00:00
<div class="theme-version">
<strong><?php _e('Version:') ?> </strong>
<?php echo wp_kses( $theme->version, $themes_allowedtags ); ?>
</div>
<div class="theme-description">
<?php echo wp_kses( $theme->description, $themes_allowedtags ); ?>
</div>
2012-03-07 18:24:34 +00:00
</div>
<input class="theme-preview-url" type="hidden" value="<?php echo esc_url( $theme->preview_url ); ?>" />
</div>
<?php
}
2012-03-02 22:31:15 +00:00
/**
* Send required variables to JavaScript land
*
2013-12-24 18:57:12 +00:00
* @since 3.4.0
2014-07-13 22:09:16 +00:00
* @access public
2012-03-02 22:31:15 +00:00
*
2015-05-28 21:41:30 +00:00
* @global string $tab Current tab within Themes->Install screen
* @global string $type Type of search.
2015-05-29 20:17:26 +00:00
*
* @param array $extra_args Unused.
2012-03-02 22:31:15 +00:00
*/
2014-07-13 22:09:16 +00:00
public function _js_vars( $extra_args = array() ) {
2012-03-07 17:35:17 +00:00
global $tab, $type;
2012-03-02 23:06:31 +00:00
parent::_js_vars( compact( 'tab', 'type' ) );
2012-03-02 22:31:15 +00:00
}
2012-05-09 15:01:49 +00:00
/**
* Check to see if the theme is already installed.
*
2013-12-24 18:57:12 +00:00
* @since 3.4.0
2012-05-09 15:01:49 +00:00
* @access private
*
* @param object $theme - A WordPress.org Theme API object.
* @return string Theme status.
*/
private function _get_theme_status( $theme ) {
$status = 'install';
$installed_theme = wp_get_theme( $theme->slug );
if ( $installed_theme->exists() ) {
if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) )
$status = 'latest_installed';
elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) )
$status = 'newer_installed';
else
$status = 'update_available';
}
return $status;
}
2010-10-25 02:57:43 +00:00
}