2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-17 17:13:25 +02:00
|
|
|
* List Table API: WP_Theme_Install_List_Table class
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2015-10-17 17:13:25 +02:00
|
|
|
* @subpackage Administration
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement displaying themes to install in a list table.
|
|
|
|
*
|
2010-10-25 06:04:18 +02:00
|
|
|
* @since 3.1.0
|
2011-01-16 22:47:24 +01:00
|
|
|
* @access private
|
2015-10-17 17:13:25 +02:00
|
|
|
*
|
2016-07-01 12:27:32 +02:00
|
|
|
* @see WP_Themes_List_Table
|
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() {
|
2020-02-06 07:33:11 +01:00
|
|
|
require ABSPATH . 'wp-admin/includes/theme-install.php';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
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
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$search_terms = array();
|
2012-03-02 23:31:15 +01:00
|
|
|
$search_string = '';
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $_REQUEST['s'] ) ) {
|
2013-03-01 18:00:25 +01:00
|
|
|
$search_string = strtolower( wp_unslash( $_REQUEST['s'] ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
$search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', $search_string ) ) ) );
|
2012-03-02 23:31:15 +01:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $_REQUEST['features'] ) ) {
|
2012-03-02 23:31:15 +01:00
|
|
|
$this->features = $_REQUEST['features'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-03-02 23:31:15 +01:00
|
|
|
|
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,
|
2017-12-01 00:11:00 +01:00
|
|
|
$tabs = array();
|
2010-10-25 04:57:43 +02:00
|
|
|
$tabs['dashboard'] = __( 'Search' );
|
2017-12-01 00:11:00 +01:00
|
|
|
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' );
|
2017-12-01 00:11:00 +01:00
|
|
|
$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
|
|
|
|
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters tabs not associated with a menu item on the Install Themes screen.
|
2014-03-06 14:44:14 +01:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $nonmenu_tabs The tabs that don't have a menu item on
|
|
|
|
* the Install Themes screen.
|
2014-03-06 14:44:14 +01:00
|
|
|
*/
|
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.
|
2020-04-05 05:02:11 +02:00
|
|
|
if ( empty( $tab ) || ( ! isset( $tabs[ $tab ] ) && ! in_array( $tab, (array) $nonmenu_tabs, true ) ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$tab = key( $tabs );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$args = array(
|
|
|
|
'page' => $paged,
|
|
|
|
'per_page' => $per_page,
|
|
|
|
'fields' => $theme_field_defaults,
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
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 ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$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':
|
2017-12-01 00:11:00 +01: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
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters API request arguments for each Install Themes screen tab.
|
2014-03-06 14:44:14 +01:00
|
|
|
*
|
2014-11-30 12:28:24 +01:00
|
|
|
* The dynamic portion of the hook name, `$tab`, refers to the theme install
|
2021-03-07 13:32:09 +01:00
|
|
|
* tab.
|
|
|
|
*
|
|
|
|
* Possible hook names include:
|
|
|
|
*
|
|
|
|
* - `install_themes_table_api_args_dashboard`
|
|
|
|
* - `install_themes_table_api_args_featured`
|
|
|
|
* - `install_themes_table_api_args_new`
|
|
|
|
* - `install_themes_table_api_args_search`
|
|
|
|
* - `install_themes_table_api_args_updated`
|
|
|
|
* - `install_themes_table_api_args_upload`
|
2014-03-06 14:44:14 +01:00
|
|
|
*
|
|
|
|
* @since 3.7.0
|
|
|
|
*
|
2020-06-20 14:14:09 +02:00
|
|
|
* @param array|false $args Theme install API arguments.
|
2014-03-06 14:44:14 +01:00
|
|
|
*/
|
2016-08-22 20:25:31 +02:00
|
|
|
$args = apply_filters( "install_themes_table_api_args_{$tab}", $args );
|
2013-08-21 08:52:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $args ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$api = themes_api( 'query_themes', $args );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_wp_error( $api ) ) {
|
2021-01-10 20:37:06 +01:00
|
|
|
wp_die( '<p>' . $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try Again' ) . '</a></p>' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$this->items = $api->themes;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->set_pagination_args(
|
|
|
|
array(
|
|
|
|
'total_items' => $api->info['results'],
|
|
|
|
'per_page' => $args['per_page'],
|
|
|
|
'infinite_scroll' => true,
|
|
|
|
)
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 23:32:24 +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 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 ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$current_link_attributes = ( $action === $tab ) ? ' class="current" aria-current="page"' : '';
|
|
|
|
$href = self_admin_url( 'theme-install.php?tab=' . $action );
|
|
|
|
$display_tabs[ 'theme-install-' . $action ] = "<a href='$href'$current_link_attributes>$text</a>";
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $display_tabs;
|
|
|
|
}
|
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
2019-09-29 13:04:58 +02:00
|
|
|
* Displays the theme install table.
|
|
|
|
*
|
|
|
|
* Overrides the parent display() method to provide a different container.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2015-05-29 23:32:24 +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 function display() {
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' );
|
2018-08-17 03:51:36 +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
|
|
|
/**
|
|
|
|
*/
|
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 ) {
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<div class="available-theme installable-theme">
|
|
|
|
<?php
|
2012-03-07 19:29:36 +01:00
|
|
|
$this->single_row( $theme );
|
2017-12-01 00:11:00 +01:00
|
|
|
?>
|
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
} // 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.
|
|
|
|
*
|
2016-11-08 21:16:31 +01:00
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2015-05-28 23:41:30 +02:00
|
|
|
* @global array $themes_allowedtags
|
|
|
|
*
|
2021-11-18 14:50:05 +01:00
|
|
|
* @param stdClass $theme {
|
2016-11-08 21:16:31 +01:00
|
|
|
* An object that contains theme data returned by the WordPress.org API.
|
2012-03-07 19:24:34 +01:00
|
|
|
*
|
2020-10-20 04:04:07 +02:00
|
|
|
* @type string $name Theme name, e.g. 'Twenty Twenty-One'.
|
|
|
|
* @type string $slug Theme slug, e.g. 'twentytwentyone'.
|
2016-11-08 21:16:31 +01:00
|
|
|
* @type string $version Theme version, e.g. '1.1'.
|
|
|
|
* @type string $author Theme author username, e.g. 'melchoyce'.
|
2020-10-20 04:04:07 +02:00
|
|
|
* @type string $preview_url Preview URL, e.g. 'https://2021.wordpress.net/'.
|
|
|
|
* @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentytwentyone/'.
|
2016-11-08 21:16:31 +01:00
|
|
|
* @type float $rating Rating score.
|
|
|
|
* @type int $num_ratings The number of ratings.
|
2020-10-20 04:04:07 +02:00
|
|
|
* @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentytwentyone/'.
|
2016-11-08 21:16:31 +01:00
|
|
|
* @type string $description Theme description.
|
|
|
|
* @type string $download_link Theme ZIP download URL.
|
|
|
|
* }
|
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;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $theme ) ) {
|
2012-03-07 19:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-03-07 19:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$name = wp_kses( $theme->name, $themes_allowedtags );
|
2012-03-07 19:24:34 +01:00
|
|
|
$author = wp_kses( $theme->author, $themes_allowedtags );
|
|
|
|
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
$preview_title = sprintf( __( 'Preview “%s”' ), $name );
|
|
|
|
$preview_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'tab' => 'theme-information',
|
|
|
|
'theme' => $theme->slug,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
self_admin_url( 'theme-install.php' )
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2012-03-07 19:24:34 +01:00
|
|
|
|
2012-05-07 01:06:47 +02:00
|
|
|
$actions = array();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$install_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'action' => 'install-theme',
|
|
|
|
'theme' => $theme->slug,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
self_admin_url( 'update.php' )
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2012-05-09 17:01:49 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$update_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'action' => 'upgrade-theme',
|
|
|
|
'theme' => $theme->slug,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
self_admin_url( 'update.php' )
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2012-05-09 17:01:49 +02:00
|
|
|
|
|
|
|
$status = $this->_get_theme_status( $theme );
|
|
|
|
|
|
|
|
switch ( $status ) {
|
|
|
|
case 'update_available':
|
2018-03-11 17:44:34 +01:00
|
|
|
$actions[] = sprintf(
|
|
|
|
'<a class="install-now" href="%s" title="%s">%s</a>',
|
|
|
|
esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme version. */
|
2018-03-11 17:44:34 +01:00
|
|
|
esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ),
|
|
|
|
__( 'Update' )
|
|
|
|
);
|
2012-05-09 17:01:49 +02:00
|
|
|
break;
|
|
|
|
case 'newer_installed':
|
|
|
|
case 'latest_installed':
|
2018-03-11 17:44:34 +01:00
|
|
|
$actions[] = sprintf(
|
|
|
|
'<span class="install-now" title="%s">%s</span>',
|
|
|
|
esc_attr__( 'This theme is already installed and is up to date' ),
|
|
|
|
_x( 'Installed', 'theme' )
|
|
|
|
);
|
2012-05-09 17:01:49 +02:00
|
|
|
break;
|
2014-05-30 19:58:15 +02:00
|
|
|
case 'install':
|
|
|
|
default:
|
2018-03-11 17:44:34 +01:00
|
|
|
$actions[] = sprintf(
|
|
|
|
'<a class="install-now" href="%s" title="%s">%s</a>',
|
|
|
|
esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme name. */
|
2020-07-21 01:14:05 +02:00
|
|
|
esc_attr( sprintf( _x( 'Install %s', 'theme' ), $name ) ),
|
2018-03-11 17:44:34 +01:00
|
|
|
__( 'Install Now' )
|
|
|
|
);
|
2014-05-30 19:58:15 +02:00
|
|
|
break;
|
2012-05-09 17:01:49 +02:00
|
|
|
}
|
2012-05-07 01:06:47 +02:00
|
|
|
|
2018-03-11 17:44:34 +01:00
|
|
|
$actions[] = sprintf(
|
|
|
|
'<a class="install-theme-preview" href="%s" title="%s">%s</a>',
|
|
|
|
esc_url( $preview_url ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme name. */
|
2018-03-11 17:44:34 +01:00
|
|
|
esc_attr( sprintf( __( 'Preview %s' ), $name ) ),
|
|
|
|
__( 'Preview' )
|
|
|
|
);
|
2012-05-07 01:06:47 +02:00
|
|
|
|
2014-03-06 14:44:14 +01:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the install action links for a theme in the Install Themes list table.
|
2014-03-06 14:44:14 +01:00
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
2018-03-22 21:27:32 +01:00
|
|
|
* @param string[] $actions An array of theme action links. Defaults are
|
2014-03-06 14:44:14 +01:00
|
|
|
* links to Install Now, Preview, and Details.
|
2021-11-18 14:50:05 +01:00
|
|
|
* @param stdClass $theme An object that contains theme data returned by the
|
|
|
|
* WordPress.org API.
|
2014-03-06 14:44:14 +01:00
|
|
|
*/
|
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 ); ?>">
|
2015-11-07 17:12:27 +01:00
|
|
|
<img src="<?php echo esc_url( $theme->screenshot_url ); ?>" width="150" alt="" />
|
2012-03-07 19:24:34 +01:00
|
|
|
</a>
|
|
|
|
|
2012-04-10 02:15:13 +02:00
|
|
|
<h3><?php echo $name; ?></h3>
|
2018-08-17 03:51:36 +02:00
|
|
|
<div class="theme-author">
|
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme author. */
|
2018-03-11 17:44:34 +01:00
|
|
|
printf( __( 'By %s' ), $author );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
|
|
|
</div>
|
2012-03-07 19:24:34 +01:00
|
|
|
|
2012-05-07 01:06:47 +02:00
|
|
|
<div class="action-links">
|
|
|
|
<ul>
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php foreach ( $actions as $action ) : ?>
|
2012-05-07 01:06:47 +02:00
|
|
|
<li><?php echo $action; ?></li>
|
|
|
|
<?php endforeach; ?>
|
2017-12-01 00:11:00 +01: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">
|
2016-09-28 21:54:28 +02:00
|
|
|
<a href="#" class="close-full-overlay button"><?php _e( 'Close' ); ?></a>
|
2013-11-22 05:03:10 +01:00
|
|
|
<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">
|
2016-09-28 21:54:28 +02:00
|
|
|
<button type="button" class="collapse-sidebar button" 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.
|
|
|
|
*
|
2021-11-18 14:50:05 +01:00
|
|
|
* @param stdClass $theme A WordPress.org Theme API object.
|
2012-03-07 19:24:34 +01: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 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
|
|
|
|
*
|
2021-11-18 14:50:05 +01:00
|
|
|
* @param stdClass $theme A WordPress.org Theme API object.
|
2012-03-07 19:24:34 +01: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 function install_theme_info( $theme ) {
|
2012-03-07 19:24:34 +01:00
|
|
|
global $themes_allowedtags;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $theme ) ) {
|
2012-03-07 19:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-03-07 19:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$name = wp_kses( $theme->name, $themes_allowedtags );
|
2012-03-07 19:24:34 +01:00
|
|
|
$author = wp_kses( $theme->author, $themes_allowedtags );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$install_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'action' => 'install-theme',
|
|
|
|
'theme' => $theme->slug,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
self_admin_url( 'update.php' )
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2012-03-07 19:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$update_url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'action' => 'upgrade-theme',
|
|
|
|
'theme' => $theme->slug,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
self_admin_url( 'update.php' )
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2012-05-09 17:01:49 +02:00
|
|
|
|
|
|
|
$status = $this->_get_theme_status( $theme );
|
|
|
|
|
2012-03-07 19:24:34 +01:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<div class="install-theme-info">
|
|
|
|
<?php
|
|
|
|
switch ( $status ) {
|
|
|
|
case 'update_available':
|
2018-03-11 17:44:34 +01:00
|
|
|
printf(
|
|
|
|
'<a class="theme-install button button-primary" href="%s" title="%s">%s</a>',
|
|
|
|
esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme version. */
|
2018-03-11 17:44:34 +01:00
|
|
|
esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ),
|
|
|
|
__( 'Update' )
|
|
|
|
);
|
2017-12-01 00:11:00 +01:00
|
|
|
break;
|
|
|
|
case 'newer_installed':
|
|
|
|
case 'latest_installed':
|
2018-03-11 17:44:34 +01:00
|
|
|
printf(
|
|
|
|
'<span class="theme-install" title="%s">%s</span>',
|
|
|
|
esc_attr__( 'This theme is already installed and is up to date' ),
|
|
|
|
_x( 'Installed', 'theme' )
|
|
|
|
);
|
2017-12-01 00:11:00 +01:00
|
|
|
break;
|
|
|
|
case 'install':
|
|
|
|
default:
|
2018-03-11 17:44:34 +01:00
|
|
|
printf(
|
|
|
|
'<a class="theme-install button button-primary" href="%s">%s</a>',
|
|
|
|
esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ),
|
|
|
|
__( 'Install' )
|
|
|
|
);
|
2017-12-01 00:11:00 +01:00
|
|
|
break;
|
|
|
|
}
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2012-03-07 19:24:34 +01:00
|
|
|
<h3 class="theme-name"><?php echo $name; ?></h3>
|
2018-08-17 03:51:36 +02:00
|
|
|
<span class="theme-by">
|
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Theme author. */
|
2018-03-11 17:44:34 +01:00
|
|
|
printf( __( 'By %s' ), $author );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
|
|
|
</span>
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php if ( isset( $theme->screenshot_url ) ) : ?>
|
2015-11-07 17:12:27 +01:00
|
|
|
<img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" alt="" />
|
2012-03-07 19:24:34 +01:00
|
|
|
<?php endif; ?>
|
2012-05-07 01:06:47 +02:00
|
|
|
<div class="theme-details">
|
2017-12-01 00:11:00 +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">
|
2017-12-01 00:11:00 +01:00
|
|
|
<strong><?php _e( 'Version:' ); ?> </strong>
|
2012-05-07 01:06:47 +02:00
|
|
|
<?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
|
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
|
|
|
*
|
2021-11-18 14:50:05 +01:00
|
|
|
* @param stdClass $theme A WordPress.org Theme API object.
|
2012-05-09 17:01:49 +02:00
|
|
|
* @return string Theme status.
|
|
|
|
*/
|
|
|
|
private function _get_theme_status( $theme ) {
|
|
|
|
$status = 'install';
|
|
|
|
|
|
|
|
$installed_theme = wp_get_theme( $theme->slug );
|
|
|
|
if ( $installed_theme->exists() ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( version_compare( $installed_theme->get( 'Version' ), $theme->version, '=' ) ) {
|
2012-05-09 17:01:49 +02:00
|
|
|
$status = 'latest_installed';
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( version_compare( $installed_theme->get( 'Version' ), $theme->version, '>' ) ) {
|
2012-05-09 17:01:49 +02:00
|
|
|
$status = 'newer_installed';
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2012-05-09 17:01:49 +02:00
|
|
|
$status = 'update_available';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-05-09 17:01:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|