2010-10-25 04:57:43 +02:00
< ? php
/**
2010-10-25 06:04:18 +02:00
* Theme Installer List Table class .
2010-10-25 04:57:43 +02:00
*
* @ package WordPress
2010-10-25 06:04:18 +02:00
* @ subpackage List_Table
* @ since 3.1 . 0
2011-01-16 22:47:24 +01:00
* @ access private
2010-10-25 04:57:43 +02:00
*/
2012-03-02 23:31:15 +01:00
class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
2010-10-25 04:57:43 +02:00
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public $features = array ();
2012-02-09 18:20:26 +01:00
2015-05-29 22:17:26 +02:00
/**
*
* @ return bool
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function ajax_user_can () {
2012-03-02 23:31:15 +01:00
return current_user_can ( 'install_themes' );
2010-10-25 04:57:43 +02:00
}
2015-05-28 23:41:30 +02:00
/**
*
* @ global array $tabs
* @ global string $tab
* @ global int $paged
* @ global string $type
* @ global array $theme_field_defaults
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function prepare_items () {
2010-10-25 04:57:43 +02:00
include ( ABSPATH . 'wp-admin/includes/theme-install.php' );
2012-03-02 23:31:15 +01:00
global $tabs , $tab , $paged , $type , $theme_field_defaults ;
2012-03-02 23:26:58 +01:00
wp_reset_vars ( array ( 'tab' ) );
2012-03-02 23:09:26 +01:00
2012-03-02 23:31:15 +01:00
$search_terms = array ();
$search_string = '' ;
if ( ! empty ( $_REQUEST [ 's' ] ) ){
2013-03-01 18:00:25 +01:00
$search_string = strtolower ( wp_unslash ( $_REQUEST [ 's' ] ) );
2012-03-02 23:31:15 +01:00
$search_terms = array_unique ( array_filter ( array_map ( 'trim' , explode ( ',' , $search_string ) ) ) );
}
if ( ! empty ( $_REQUEST [ 'features' ] ) )
$this -> features = $_REQUEST [ 'features' ];
2010-10-25 04:57:43 +02:00
$paged = $this -> get_pagenum ();
2011-09-15 06:26:26 +02:00
$per_page = 36 ;
2010-10-25 04:57:43 +02: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' );
2014-05-06 14:34:14 +02: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 04:57:43 +02:00
$nonmenu_tabs = array ( 'theme-information' ); // Valid actions to perform which do not have a Menu item.
2014-07-05 01:58:15 +02:00
/** This filter is documented in wp-admin/theme-install.php */
2010-10-25 04:57:43 +02:00
$tabs = apply_filters ( 'install_themes_tabs' , $tabs );
2014-03-06 14:44:14 +01:00
/**
* Filter tabs not associated with a menu item on the Install Themes screen .
*
* @ 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 04:57:43 +02:00
$nonmenu_tabs = apply_filters ( 'install_themes_nonmenu_tabs' , $nonmenu_tabs );
2012-12-20 16:55:32 +01:00
// If a non-valid menu tab has been selected, And it's not a non-menu action.
2010-10-25 04:57:43 +02: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 18:00:25 +01:00
$type = isset ( $_REQUEST [ 'type' ] ) ? wp_unslash ( $_REQUEST [ 'type' ] ) : 'term' ;
2010-10-25 04:57:43 +02:00
switch ( $type ) {
case 'tag' :
2012-03-02 23:32:29 +01:00
$args [ 'tag' ] = array_map ( 'sanitize_key' , $search_terms );
2010-10-25 04:57:43 +02:00
break ;
case 'term' :
2012-03-02 23:31:15 +01:00
$args [ 'search' ] = $search_string ;
2010-10-25 04:57:43 +02:00
break ;
case 'author' :
2012-03-02 23:31:15 +01:00
$args [ 'author' ] = $search_string ;
2010-10-25 04:57:43 +02:00
break ;
}
2012-03-02 23:31:15 +01:00
if ( ! empty ( $this -> features ) ) {
$args [ 'tag' ] = $this -> features ;
$_REQUEST [ 's' ] = implode ( ',' , $this -> features );
2010-10-25 04:57:43 +02:00
$_REQUEST [ 'type' ] = 'tag' ;
}
2012-04-25 21:37:19 +02:00
add_action ( 'install_themes_table_header' , 'install_theme_search_form' , 10 , 0 );
2010-10-25 04:57:43 +02:00
break ;
case 'featured' :
2014-07-17 11:14:16 +02:00
// case 'popular':
2010-10-25 04:57:43 +02:00
case 'new' :
case 'updated' :
$args [ 'browse' ] = $tab ;
break ;
default :
$args = false ;
2013-08-21 08:52:12 +02:00
break ;
2010-10-25 04:57:43 +02:00
}
2014-03-06 14:44:14 +01:00
/**
* Filter API request arguments for each Install Themes screen tab .
*
2014-11-30 12:28:24 +01:00
* The dynamic portion of the hook name , `$tab` , refers to the theme install
2014-03-06 14:44:14 +01: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 .
*/
2013-08-21 08:52:12 +02:00
$args = apply_filters ( 'install_themes_table_api_args_' . $tab , $args );
2012-03-02 23:31:15 +01:00
if ( ! $args )
2010-10-25 04:57:43 +02:00
return ;
$api = themes_api ( 'query_themes' , $args );
if ( is_wp_error ( $api ) )
2011-01-12 01:18:23 +01:00
wp_die ( $api -> get_error_message () . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __ ( 'Try again' ) . '</a>' );
2010-10-25 04:57:43 +02:00
$this -> items = $api -> themes ;
$this -> set_pagination_args ( array (
'total_items' => $api -> info [ 'results' ],
2014-02-21 19:30:14 +01:00
'per_page' => $args [ 'per_page' ],
2012-03-02 23:31:15 +01:00
'infinite_scroll' => true ,
2010-10-25 04:57:43 +02:00
) );
}
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function no_items () {
2010-10-25 04:57:43 +02:00
_e ( 'No themes match your request.' );
}
2015-05-28 23:41:30 +02:00
/**
*
* @ global array $tabs
* @ global string $tab
* @ return array
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
protected function get_views () {
2010-10-25 04:57:43 +02:00
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 19:51:24 +01:00
$display_tabs [ 'theme-install-' . $action ] = " <a href=' $href ' $class > $text </a> " ;
2010-10-25 04:57:43 +02:00
}
return $display_tabs ;
}
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function display () {
2012-02-09 18:20:26 +01:00
wp_nonce_field ( " fetch-list- " . get_class ( $this ), '_ajax_fetch_list_nonce' );
2010-10-25 04:57:43 +02:00
?>
2011-09-15 06:26:26 +02:00
< div class = " tablenav top themes " >
2010-10-25 04:57:43 +02:00
< div class = " alignleft actions " >
2014-03-06 14:44:14 +01:00
< ? php
/**
* Fires in the Install Themes list table header .
*
* @ since 2.8 . 0
*/
do_action ( 'install_themes_table_header' );
?>
2010-10-25 04:57:43 +02:00
</ div >
< ? php $this -> pagination ( 'top' ); ?>
< br class = " clear " />
</ div >
2011-09-15 06:26:26 +02:00
< div id = " availablethemes " >
< ? php $this -> display_rows_or_placeholder (); ?>
</ div >
2010-10-25 04:57:43 +02:00
2012-03-02 23:31:15 +01:00
< ? php
2015-03-08 00:03:27 +01:00
$this -> tablenav ( 'bottom' );
2010-10-25 04:57:43 +02:00
}
2015-05-29 23:32:24 +02:00
/**
* @ access public
*/
2014-07-14 00:09:16 +02:00
public function display_rows () {
2010-10-25 04:57:43 +02:00
$themes = $this -> items ;
2012-03-07 19:29:36 +01:00
foreach ( $themes as $theme ) {
2010-10-25 04:57:43 +02:00
?>
2012-03-07 19:24:34 +01:00
< div class = " available-theme installable-theme " >< ? php
2012-03-07 19:29:36 +01:00
$this -> single_row ( $theme );
2011-09-15 06:26:26 +02:00
?> </div>
< ? php } // end foreach $theme_names
2012-03-07 18:35:17 +01:00
2012-03-07 19:24:34 +01:00
$this -> theme_installer ();
}
2013-11-11 14:32:10 +01:00
/**
2012-03-07 19:24:34 +01:00
* Prints a theme from the WordPress . org API .
*
2015-05-28 23:41:30 +02:00
* @ global array $themes_allowedtags
*
2012-03-07 19:24:34 +01: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 23:01:57 +02: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 19:24:34 +01:00
* public 'rating' => float 80
* public 'num_ratings' => int 1
2013-05-22 23:01:57 +02:00
* public 'homepage' => string 'http://wordpress.org/themes/magazine-basic'
* 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>.'
* public 'download_link' => string 'http://wordpress.org/themes/download/magazine-basic.1.1.zip'
2012-03-07 19:24:34 +01:00
*/
2014-07-14 00:09:16 +02:00
public function single_row ( $theme ) {
2012-03-07 19:24:34 +01: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 01:01:14 +01:00
), self_admin_url ( 'theme-install.php' ) );
2012-03-07 19:24:34 +01:00
2012-05-07 01:06:47 +02:00
$actions = array ();
$install_url = add_query_arg ( array (
'action' => 'install-theme' ,
'theme' => $theme -> slug ,
), self_admin_url ( 'update.php' ) );
2012-05-09 17:01:49 +02: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 19:58:15 +02: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 17:01:49 +02:00
}
2012-05-07 01:06:47 +02:00
2012-05-16 23:08:10 +02:00
$actions [] = '<a class="install-theme-preview" href="' . esc_url ( $preview_url ) . '" title="' . esc_attr ( sprintf ( __ ( 'Preview %s' ), $name ) ) . '">' . __ ( 'Preview' ) . '</a>' ;
2012-05-07 01:06:47 +02:00
2014-03-06 14:44:14 +01:00
/**
* Filter the install action links for a theme in the Install Themes list table .
*
* @ 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-07 01:06:47 +02:00
$actions = apply_filters ( 'theme_install_actions' , $actions , $theme );
2012-03-07 19:24:34 +01:00
?>
2012-05-07 01:06:47 +02:00
< a class = " screenshot install-theme-preview " href = " <?php echo esc_url( $preview_url ); ?> " title = " <?php echo esc_attr( $preview_title ); ?> " >
2014-05-19 03:59:15 +02:00
< img src = " <?php echo esc_url( $theme->screenshot_url ); ?> " width = " 150 " />
2012-03-07 19:24:34 +01:00
</ a >
2012-04-10 02:15:13 +02:00
< h3 >< ? php echo $name ; ?> </h3>
< div class = " theme-author " >< ? php printf ( __ ( 'By %s' ), $author ); ?> </div>
2012-03-07 19:24:34 +01:00
2012-05-07 01:06:47 +02:00
< div class = " action-links " >
< ul >
< ? php foreach ( $actions as $action ) : ?>
< li >< ? php echo $action ; ?> </li>
< ? php endforeach ; ?>
2012-07-24 02:15:15 +02:00
< li class = " hide-if-no-js " >< a href = " # " class = " theme-detail " >< ? php _e ( 'Details' ) ?> </a></li>
2012-05-07 01:06:47 +02:00
</ ul >
</ div >
2012-03-07 19:24:34 +01:00
< ? php
$this -> install_theme_info ( $theme );
}
2013-11-11 14:32:10 +01:00
/**
2012-03-07 19:24:34 +01:00
* Prints the wrapper for the theme installer .
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function theme_installer () {
2012-03-07 18:35:17 +01:00
?>
2012-06-06 23:45:17 +02:00
< div id = " theme-installer " class = " wp-full-overlay expanded " >
2012-03-07 18:35:17 +01:00
< div class = " wp-full-overlay-sidebar " >
2012-06-01 17:03:50 +02:00
< div class = " wp-full-overlay-header " >
2013-11-22 05:03:10 +01:00
< a href = " # " class = " close-full-overlay button-secondary " >< ? php _e ( 'Close' ); ?> </a>
< span class = " theme-install " ></ span >
2012-06-01 17:03:50 +02:00
</ div >
2012-05-15 03:03:31 +02:00
< div class = " wp-full-overlay-sidebar-content " >
< div class = " install-theme-info " ></ div >
</ div >
2012-06-01 17:03:50 +02:00
< div class = " wp-full-overlay-footer " >
2015-07-10 23:22:26 +02:00
< button type = " button " class = " collapse-sidebar button-secondary " aria - expanded = " true " aria - label = " <?php esc_attr_e( 'Collapse Sidebar' ); ?> " >
2012-06-01 17:03:50 +02:00
< span class = " collapse-sidebar-arrow " ></ span >
2015-07-10 23:22:26 +02:00
< span class = " collapse-sidebar-label " >< ? php _e ( 'Collapse' ); ?> </span>
</ button >
2012-06-01 17:03:50 +02:00
</ div >
2012-03-07 18:35:17 +01:00
</ div >
< div class = " wp-full-overlay-main " ></ div >
</ div >
< ? php
2010-10-25 04:57:43 +02:00
}
2012-03-02 23:31:15 +01:00
2013-11-11 14:32:10 +01:00
/**
2012-03-07 19:24:34 +01: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 .
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function theme_installer_single ( $theme ) {
2012-03-07 19:24:34 +01: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 14:32:10 +01:00
/**
2012-03-07 19:24:34 +01:00
* Prints the info for a theme ( to be used in the theme installer modal ) .
*
2015-05-28 23:41:30 +02:00
* @ global array $themes_allowedtags
*
2012-03-07 19:24:34 +01:00
* @ param object $theme - A WordPress . org Theme API object .
*/
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
public function install_theme_info ( $theme ) {
2012-03-07 19:24:34 +01: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 17:01:49 +02: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 19:24:34 +01:00
?>
2012-05-09 17:01:49 +02: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 19:58:15 +02: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 17:01:49 +02:00
} ?>
2012-03-07 19:24:34 +01: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 ) ) : ?>
< img class = " theme-screenshot " src = " <?php echo esc_url( $theme->screenshot_url ); ?> " />
< ? php endif ; ?>
2012-05-07 01:06:47 +02:00
< div class = " theme-details " >
2013-11-26 03:25:21 +01:00
< ? php wp_star_rating ( array ( 'rating' => $theme -> rating , 'type' => 'percent' , 'number' => $theme -> num_ratings ) ); ?>
2012-05-07 01:06:47 +02: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 19:24:34 +01:00
</ div >
< input class = " theme-preview-url " type = " hidden " value = " <?php echo esc_url( $theme->preview_url ); ?> " />
</ div >
< ? php
}
2012-03-02 23:31:15 +01:00
/**
* Send required variables to JavaScript land
*
2013-12-24 19:57:12 +01:00
* @ since 3.4 . 0
2014-07-14 00:09:16 +02:00
* @ access public
2012-03-02 23:31:15 +01:00
*
2015-05-28 23:41:30 +02:00
* @ global string $tab Current tab within Themes -> Install screen
* @ global string $type Type of search .
2015-05-29 22:17:26 +02:00
*
* @ param array $extra_args Unused .
2012-03-02 23:31:15 +01:00
*/
2014-07-14 00:09:16 +02:00
public function _js_vars ( $extra_args = array () ) {
2012-03-07 18:35:17 +01:00
global $tab , $type ;
2012-03-03 00:06:31 +01:00
parent :: _js_vars ( compact ( 'tab' , 'type' ) );
2012-03-02 23:31:15 +01:00
}
2012-05-09 17:01:49 +02:00
/**
* Check to see if the theme is already installed .
*
2013-12-24 19:57:12 +01:00
* @ since 3.4 . 0
2012-05-09 17:01:49 +02: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 04:57:43 +02:00
}