2010-10-24 22:57:43 -04:00
< ? php
/**
2010-10-25 00:04:18 -04:00
* Theme Installer List Table class .
2010-10-24 22:57:43 -04:00
*
* @ package WordPress
2010-10-25 00:04:18 -04:00
* @ subpackage List_Table
* @ since 3.1 . 0
2011-01-16 16:47:24 -05:00
* @ access private
2010-10-24 22:57:43 -04:00
*/
2012-03-02 17:31:15 -05:00
class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
2010-10-24 22:57:43 -04:00
2012-03-02 17:31:15 -05:00
var $features = array ();
2012-02-09 12:20:26 -05:00
2010-12-16 04:18:28 -05:00
function ajax_user_can () {
2012-03-02 17:31:15 -05:00
return current_user_can ( 'install_themes' );
2010-10-24 22:57:43 -04:00
}
function prepare_items () {
include ( ABSPATH . 'wp-admin/includes/theme-install.php' );
2012-03-02 17:31:15 -05:00
global $tabs , $tab , $paged , $type , $theme_field_defaults ;
2012-03-02 17:26:58 -05:00
wp_reset_vars ( array ( 'tab' ) );
2012-03-02 17:09:26 -05:00
2012-03-02 17:31:15 -05:00
$search_terms = array ();
$search_string = '' ;
if ( ! empty ( $_REQUEST [ 's' ] ) ){
$search_string = strtolower ( stripslashes ( $_REQUEST [ 's' ] ) );
$search_terms = array_unique ( array_filter ( array_map ( 'trim' , explode ( ',' , $search_string ) ) ) );
}
if ( ! empty ( $_REQUEST [ 'features' ] ) )
$this -> features = $_REQUEST [ 'features' ];
2010-10-24 22:57:43 -04:00
$paged = $this -> get_pagenum ();
2011-09-15 00:26:26 -04:00
$per_page = 36 ;
2010-10-24 22:57:43 -04:00
// These are the tabs which are shown on the page,
$tabs = array ();
$tabs [ 'dashboard' ] = __ ( 'Search' );
if ( 'search' == $tab )
$tabs [ 'search' ] = __ ( 'Search Results' );
$tabs [ 'upload' ] = __ ( 'Upload' );
$tabs [ 'featured' ] = _x ( 'Featured' , 'Theme Installer' );
//$tabs['popular'] = _x( 'Popular','Theme Installer' );
$tabs [ 'new' ] = _x ( 'Newest' , 'Theme Installer' );
$tabs [ 'updated' ] = _x ( 'Recently Updated' , 'Theme Installer' );
$nonmenu_tabs = array ( 'theme-information' ); // Valid actions to perform which do not have a Menu item.
$tabs = apply_filters ( 'install_themes_tabs' , $tabs );
$nonmenu_tabs = apply_filters ( 'install_themes_nonmenu_tabs' , $nonmenu_tabs );
// 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 ) ) )
$tab = key ( $tabs );
$args = array ( 'page' => $paged , 'per_page' => $per_page , 'fields' => $theme_field_defaults );
switch ( $tab ) {
case 'search' :
$type = isset ( $_REQUEST [ 'type' ] ) ? stripslashes ( $_REQUEST [ 'type' ] ) : '' ;
switch ( $type ) {
case 'tag' :
2012-03-02 17:32:29 -05:00
$args [ 'tag' ] = array_map ( 'sanitize_key' , $search_terms );
2010-10-24 22:57:43 -04:00
break ;
case 'term' :
2012-03-02 17:31:15 -05:00
$args [ 'search' ] = $search_string ;
2010-10-24 22:57:43 -04:00
break ;
case 'author' :
2012-03-02 17:31:15 -05:00
$args [ 'author' ] = $search_string ;
2010-10-24 22:57:43 -04:00
break ;
}
2012-03-02 17:31:15 -05:00
if ( ! empty ( $this -> features ) ) {
$args [ 'tag' ] = $this -> features ;
$_REQUEST [ 's' ] = implode ( ',' , $this -> features );
2010-10-24 22:57:43 -04:00
$_REQUEST [ 'type' ] = 'tag' ;
}
add_action ( 'install_themes_table_header' , 'install_theme_search_form' );
break ;
case 'featured' :
//case 'popular':
case 'new' :
case 'updated' :
$args [ 'browse' ] = $tab ;
break ;
default :
$args = false ;
}
2012-03-02 17:31:15 -05:00
if ( ! $args )
2010-10-24 22:57:43 -04:00
return ;
$api = themes_api ( 'query_themes' , $args );
if ( is_wp_error ( $api ) )
2011-01-11 19:18:23 -05:00
wp_die ( $api -> get_error_message () . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __ ( 'Try again' ) . '</a>' );
2010-10-24 22:57:43 -04:00
$this -> items = $api -> themes ;
$this -> set_pagination_args ( array (
'total_items' => $api -> info [ 'results' ],
'per_page' => $per_page ,
2012-03-02 17:31:15 -05:00
'infinite_scroll' => true ,
2010-10-24 22:57:43 -04:00
) );
}
function no_items () {
_e ( 'No themes match your request.' );
}
function get_views () {
global $tabs , $tab ;
$display_tabs = array ();
foreach ( ( array ) $tabs as $action => $text ) {
$class = ( $action == $tab ) ? ' class="current"' : '' ;
$href = self_admin_url ( 'theme-install.php?tab=' . $action );
2010-12-03 13:51:24 -05:00
$display_tabs [ 'theme-install-' . $action ] = " <a href=' $href ' $class > $text </a> " ;
2010-10-24 22:57:43 -04:00
}
return $display_tabs ;
}
2010-12-16 14:05:14 -05:00
function display () {
2012-02-09 12:20:26 -05:00
wp_nonce_field ( " fetch-list- " . get_class ( $this ), '_ajax_fetch_list_nonce' );
2010-10-24 22:57:43 -04:00
?>
2011-09-15 00:26:26 -04:00
< div class = " tablenav top themes " >
2010-10-24 22:57:43 -04:00
< div class = " alignleft actions " >
< ? php do_action ( 'install_themes_table_header' ); ?>
</ div >
< ? php $this -> pagination ( 'top' ); ?>
2010-12-20 13:45:05 -05:00
< img src = " <?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?> " class = " ajax-loading list-ajax-loading " alt = " " />
2010-10-24 22:57:43 -04:00
< br class = " clear " />
</ div >
2011-09-15 00:26:26 -04:00
< div id = " availablethemes " >
< ? php $this -> display_rows_or_placeholder (); ?>
</ div >
2010-10-24 22:57:43 -04:00
2012-03-02 17:31:15 -05:00
< ? php
parent :: tablenav ( 'bottom' );
2010-10-24 22:57:43 -04:00
}
function display_rows () {
$themes = $this -> items ;
2012-03-07 13:29:36 -05:00
foreach ( $themes as $theme ) {
2010-10-24 22:57:43 -04:00
?>
2012-03-07 13:24:34 -05:00
< div class = " available-theme installable-theme " >< ? php
2012-03-07 13:29:36 -05:00
$this -> single_row ( $theme );
2011-09-15 00:26:26 -04:00
?> </div>
< ? php } // end foreach $theme_names
2012-03-07 12:35:17 -05:00
2012-03-07 13:24:34 -05:00
$this -> theme_installer ();
}
/*
* Prints a theme from the WordPress . org API .
*
* @ param object $theme An object that contains theme data returned by the WordPress . org API .
*
* Example theme data :
* object ( stdClass )[ 59 ]
* public 'name' => string 'Magazine Basic' ( length = 14 )
* public 'slug' => string 'magazine-basic' ( length = 14 )
* public 'version' => string '1.1' ( length = 3 )
* public 'author' => string 'tinkerpriest' ( length = 12 )
* public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' ( length = 36 )
* public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' ( length = 68 )
* public 'rating' => float 80
* public 'num_ratings' => int 1
* public 'homepage' => string 'http://wordpress.org/extend/themes/magazine-basic' ( length = 49 )
* public 'description' => string 'A basic magazine style layout with a fully customizable layout through a backend interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.' ( length = 214 )
* public 'download_link' => string 'http://wordpress.org/extend/themes/download/magazine-basic.1.1.zip' ( length = 66 )
*/
function single_row ( $theme ) {
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 ,
) );
?>
< a class = " screenshot " href = " <?php echo esc_url( $preview_url ); ?> " title = " <?php echo esc_attr( $preview_title ); ?> " >
< img src = '<?php echo esc_url( $theme->screenshot_url ); ?>' width = '150' />
</ a >
< h3 >< ? php
/* translators: 1: theme name, 2: author name */
printf ( __ ( '%1$s <span>by %2$s</span>' ), $name , $author );
?> </h3>
< ? php
$this -> install_theme_info ( $theme );
}
/*
* Prints the wrapper for the theme installer .
*/
function theme_installer () {
2012-03-07 12:35:17 -05:00
?>
< div id = " theme-installer " class = " wp-full-overlay " >
< a href = " # " class = " close-full-overlay " >< ? php printf ( __ ( '← Return to %s' ), get_admin_page_title () ); ?> </a>
< a href = " # " class = " collapse-sidebar button-secondary " title = " <?php esc_attr_e('Collapse Sidebar'); ?> " >< span ></ span ></ a >
< div class = " wp-full-overlay-sidebar " >
< div class = " wp-full-overlay-header " ></ div >
< div class = " install-theme-info " ></ div >
</ div >
< div class = " wp-full-overlay-main " ></ div >
</ div >
< ? php
2010-10-24 22:57:43 -04:00
}
2012-03-02 17:31:15 -05:00
2012-03-07 13:24:34 -05: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 .
*/
function theme_installer_single ( $theme ) {
$class = 'wp-full-overlay' ;
if ( $theme )
$class .= ' single-theme' ;
?>
< 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
}
/*
* Prints the info for a theme ( to be used in the theme installer modal ) .
*
* @ param object $theme - A WordPress . org Theme API object .
*/
function install_theme_info ( $theme ) {
global $themes_allowedtags ;
if ( empty ( $theme ) )
return ;
$name = wp_kses ( $theme -> name , $themes_allowedtags );
$author = wp_kses ( $theme -> author , $themes_allowedtags );
$num_ratings = sprintf ( _n ( '(based on %s rating)' , '(based on %s ratings)' , $theme -> num_ratings ), number_format_i18n ( $theme -> num_ratings ) );
$install_url = add_query_arg ( array (
'action' => 'install-theme' ,
'theme' => $theme -> slug ,
), self_admin_url ( 'update.php' ) );
?>
< div class = " install-theme-info " >
< a class = " theme-install button-primary " href = " <?php echo wp_nonce_url( $install_url , 'install-theme_' . $theme->slug ); ?> " >< ? php _e ( 'Install' ); ?> </a>
< h3 class = " theme-name " >< ? php echo $name ; ?> </h3>
< span class = " theme-by " >< ? php printf ( __ ( 'By %s' ), $author ); ?> </span>
< ? php if ( isset ( $theme -> screenshot_url ) ) : ?>
< img class = " theme-screenshot " src = " <?php echo esc_url( $theme->screenshot_url ); ?> " />
< ? php endif ; ?>
< div class = " theme-rating " title = " <?php echo esc_attr( $num_ratings ); ?> " >
< div style = " width:<?php echo esc_attr( intval( $theme->rating ) . 'px' ); ?>; " ></ div >
</ div >
< 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 >
< input class = " theme-preview-url " type = " hidden " value = " <?php echo esc_url( $theme->preview_url ); ?> " />
</ div >
< ? php
}
2012-03-02 17:31:15 -05:00
/**
* Send required variables to JavaScript land
*
* @ since 3.4
* @ access private
*
* @ uses $tab Global ; current tab within Themes -> Install screen
* @ uses $type Global ; type of search .
*/
function _js_vars () {
2012-03-07 12:35:17 -05:00
global $tab , $type ;
2012-03-02 18:06:31 -05:00
parent :: _js_vars ( compact ( 'tab' , 'type' ) );
2012-03-02 17:31:15 -05:00
}
2010-10-24 22:57:43 -04:00
}