2009-02-11 18:10:11 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2017-08-22 07:52:48 -04:00
|
|
|
* WordPress Theme Installation Administration API
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
$themes_allowedtags = array(
|
|
|
|
'a' => array(
|
|
|
|
'href' => array(),
|
|
|
|
'title' => array(),
|
|
|
|
'target' => array(),
|
|
|
|
),
|
|
|
|
'abbr' => array( 'title' => array() ),
|
|
|
|
'acronym' => array( 'title' => array() ),
|
|
|
|
'code' => array(),
|
|
|
|
'pre' => array(),
|
|
|
|
'em' => array(),
|
|
|
|
'strong' => array(),
|
|
|
|
'div' => array(),
|
|
|
|
'p' => array(),
|
|
|
|
'ul' => array(),
|
|
|
|
'ol' => array(),
|
|
|
|
'li' => array(),
|
|
|
|
'h1' => array(),
|
|
|
|
'h2' => array(),
|
|
|
|
'h3' => array(),
|
|
|
|
'h4' => array(),
|
|
|
|
'h5' => array(),
|
|
|
|
'h6' => array(),
|
|
|
|
'img' => array(
|
|
|
|
'src' => array(),
|
|
|
|
'class' => array(),
|
|
|
|
'alt' => array(),
|
|
|
|
),
|
2009-02-27 16:22:49 -05:00
|
|
|
);
|
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
$theme_field_defaults = array(
|
|
|
|
'description' => true,
|
|
|
|
'sections' => false,
|
|
|
|
'tested' => true,
|
|
|
|
'requires' => true,
|
|
|
|
'rating' => true,
|
|
|
|
'downloaded' => true,
|
|
|
|
'downloadlink' => true,
|
|
|
|
'last_updated' => true,
|
|
|
|
'homepage' => true,
|
|
|
|
'tags' => true,
|
|
|
|
'num_ratings' => true,
|
2009-02-27 16:22:49 -05:00
|
|
|
);
|
2009-03-17 22:43:45 -04:00
|
|
|
|
2009-02-11 18:10:11 -05:00
|
|
|
/**
|
2022-03-28 09:17:05 -04:00
|
|
|
* Retrieves the list of WordPress theme features (aka theme tags).
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
2020-07-16 17:12:08 -04:00
|
|
|
* @deprecated 3.1.0 Use get_theme_feature_list() instead.
|
2010-09-24 11:28:28 -04:00
|
|
|
*
|
2009-02-11 18:10:11 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
2013-01-04 05:13:51 -05:00
|
|
|
function install_themes_feature_list() {
|
2016-07-06 08:40:29 -04:00
|
|
|
_deprecated_function( __FUNCTION__, '3.1.0', 'get_theme_feature_list()' );
|
2013-05-07 12:35:03 -04:00
|
|
|
|
2019-07-01 08:52:01 -04:00
|
|
|
$cache = get_transient( 'wporg_theme_feature_list' );
|
|
|
|
if ( ! $cache ) {
|
2012-12-12 02:30:28 -05:00
|
|
|
set_transient( 'wporg_theme_feature_list', array(), 3 * HOUR_IN_SECONDS );
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( $cache ) {
|
2009-04-07 17:44:23 -04:00
|
|
|
return $cache;
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2013-01-04 05:13:51 -05:00
|
|
|
$feature_list = themes_api( 'feature_list', array() );
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_wp_error( $feature_list ) ) {
|
2013-05-07 12:35:03 -04:00
|
|
|
return array();
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2012-12-12 02:30:28 -05:00
|
|
|
set_transient( 'wporg_theme_feature_list', $feature_list, 3 * HOUR_IN_SECONDS );
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2009-04-07 05:44:41 -04:00
|
|
|
return $feature_list;
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
|
|
|
|
2009-04-07 05:44:41 -04:00
|
|
|
/**
|
2022-03-28 09:17:05 -04:00
|
|
|
* Displays search form for searching themes.
|
2009-04-07 05:44:41 -04:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
2015-05-29 16:17:26 -04:00
|
|
|
*
|
|
|
|
* @param bool $type_selector
|
2009-04-07 05:44:41 -04:00
|
|
|
*/
|
2012-04-25 15:37:19 -04:00
|
|
|
function install_theme_search_form( $type_selector = true ) {
|
2013-03-01 12:14:09 -05:00
|
|
|
$type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term';
|
|
|
|
$term = isset( $_REQUEST['s'] ) ? wp_unslash( $_REQUEST['s'] ) : '';
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! $type_selector ) {
|
2012-04-25 15:37:19 -04:00
|
|
|
echo '<p class="install-help">' . __( 'Search for themes by keyword.' ) . '</p>';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-11 18:10:11 -05:00
|
|
|
?>
|
2015-01-15 23:16:24 -05:00
|
|
|
<form id="search-themes" method="get">
|
2010-08-11 17:54:51 -04:00
|
|
|
<input type="hidden" name="tab" value="search" />
|
2012-04-25 15:37:19 -04:00
|
|
|
<?php if ( $type_selector ) : ?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<label class="screen-reader-text" for="typeselector"><?php _e( 'Type of search' ); ?></label>
|
2009-04-07 05:44:41 -04:00
|
|
|
<select name="type" id="typeselector">
|
2017-11-30 18:11:00 -05:00
|
|
|
<option value="term" <?php selected( 'term', $type ); ?>><?php _e( 'Keyword' ); ?></option>
|
|
|
|
<option value="author" <?php selected( 'author', $type ); ?>><?php _e( 'Author' ); ?></option>
|
|
|
|
<option value="tag" <?php selected( 'tag', $type ); ?>><?php _ex( 'Tag', 'Theme Installer' ); ?></option>
|
2009-04-07 05:44:41 -04:00
|
|
|
</select>
|
2017-11-30 18:11:00 -05:00
|
|
|
<label class="screen-reader-text" for="s">
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php
|
|
|
|
switch ( $type ) {
|
|
|
|
case 'term':
|
|
|
|
_e( 'Search by keyword' );
|
|
|
|
break;
|
|
|
|
case 'author':
|
|
|
|
_e( 'Search by author' );
|
|
|
|
break;
|
|
|
|
case 'tag':
|
|
|
|
_e( 'Search by tag' );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
</label>
|
2012-07-24 14:31:03 -04:00
|
|
|
<?php else : ?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<label class="screen-reader-text" for="s"><?php _e( 'Search by keyword' ); ?></label>
|
2012-04-25 15:37:19 -04:00
|
|
|
<?php endif; ?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<input type="search" name="s" id="s" size="30" value="<?php echo esc_attr( $term ); ?>" autofocus="autofocus" />
|
2016-09-28 15:54:28 -04:00
|
|
|
<?php submit_button( __( 'Search' ), '', 'search', false ); ?>
|
2009-04-07 05:44:41 -04:00
|
|
|
</form>
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-03-28 09:17:05 -04:00
|
|
|
* Displays tags filter for themes.
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
2009-04-07 05:44:41 -04:00
|
|
|
function install_themes_dashboard() {
|
2012-04-25 15:37:19 -04:00
|
|
|
install_theme_search_form( false );
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<h4><?php _e( 'Feature Filter' ); ?></h4>
|
2012-04-25 15:37:19 -04:00
|
|
|
<p class="install-help"><?php _e( 'Find a theme based on specific features.' ); ?></p>
|
2012-02-07 16:06:52 -05:00
|
|
|
|
2015-01-15 23:16:24 -05:00
|
|
|
<form method="get">
|
2012-02-07 16:06:52 -05:00
|
|
|
<input type="hidden" name="tab" value="search" />
|
2009-02-26 18:35:38 -05:00
|
|
|
<?php
|
2013-01-04 05:13:51 -05:00
|
|
|
$feature_list = get_theme_feature_list();
|
2009-04-07 05:44:41 -04:00
|
|
|
echo '<div class="feature-filter">';
|
|
|
|
|
|
|
|
foreach ( (array) $feature_list as $feature_name => $features ) {
|
2009-05-18 11:11:07 -04:00
|
|
|
$feature_name = esc_html( $feature_name );
|
2009-04-07 13:02:25 -04:00
|
|
|
echo '<div class="feature-name">' . $feature_name . '</div>';
|
2009-04-07 05:44:41 -04:00
|
|
|
|
2010-12-26 01:31:46 -05:00
|
|
|
echo '<ol class="feature-group">';
|
2010-09-24 11:28:28 -04:00
|
|
|
foreach ( $features as $feature => $feature_name ) {
|
2009-05-18 11:11:07 -04:00
|
|
|
$feature_name = esc_html( $feature_name );
|
2017-11-30 18:11:00 -05:00
|
|
|
$feature = esc_attr( $feature );
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2009-04-07 05:44:41 -04:00
|
|
|
|
|
|
|
<li>
|
2012-02-07 16:06:52 -05:00
|
|
|
<input type="checkbox" name="features[]" id="feature-id-<?php echo $feature; ?>" value="<?php echo $feature; ?>" />
|
2009-04-07 13:02:25 -04:00
|
|
|
<label for="feature-id-<?php echo $feature; ?>"><?php echo $feature_name; ?></label>
|
2009-04-07 05:44:41 -04:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
</ol>
|
|
|
|
<br class="clear" />
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
|
|
|
?>
|
2009-04-07 05:44:41 -04:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<br class="clear" />
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php submit_button( __( 'Find Themes' ), '', 'search' ); ?>
|
2009-04-07 05:44:41 -04:00
|
|
|
</form>
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
|
|
|
|
2015-05-30 23:18:25 -04:00
|
|
|
/**
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
2014-03-11 03:47:15 -04:00
|
|
|
function install_themes_upload() {
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2020-07-19 13:11:02 -04:00
|
|
|
<p class="install-help"><?php _e( 'If you have a theme in a .zip format, you may install or update it by uploading it here.' ); ?></p>
|
2017-11-30 18:11:00 -05:00
|
|
|
<form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo self_admin_url( 'update.php?action=upload-theme' ); ?>">
|
2015-12-16 02:56:29 -05:00
|
|
|
<?php wp_nonce_field( 'theme-upload' ); ?>
|
|
|
|
<label class="screen-reader-text" for="themezip"><?php _e( 'Theme zip file' ); ?></label>
|
2021-03-20 14:30:08 -04:00
|
|
|
<input type="file" id="themezip" name="themezip" accept=".zip" />
|
2016-09-28 15:54:28 -04:00
|
|
|
<?php submit_button( __( 'Install Now' ), '', 'install-theme-submit', false ); ?>
|
2009-04-09 09:16:14 -04:00
|
|
|
</form>
|
2009-04-19 15:36:28 -04:00
|
|
|
<?php
|
2009-02-26 18:35:38 -05:00
|
|
|
}
|
|
|
|
|
2012-03-07 13:29:36 -05:00
|
|
|
/**
|
2012-03-07 12:35:17 -05:00
|
|
|
* Prints a theme on the Install Themes pages.
|
|
|
|
*
|
2012-03-07 13:29:36 -05:00
|
|
|
* @deprecated 3.4.0
|
2015-05-28 22:06:31 -04:00
|
|
|
*
|
|
|
|
* @global WP_Theme_Install_List_Table $wp_list_table
|
2015-05-29 16:17:26 -04:00
|
|
|
*
|
|
|
|
* @param object $theme
|
2012-03-07 12:35:17 -05:00
|
|
|
*/
|
|
|
|
function display_theme( $theme ) {
|
2016-07-06 08:40:29 -04:00
|
|
|
_deprecated_function( __FUNCTION__, '3.4.0' );
|
2012-03-07 13:24:34 -05:00
|
|
|
global $wp_list_table;
|
2014-03-11 03:47:15 -04:00
|
|
|
if ( ! isset( $wp_list_table ) ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
|
2014-03-11 03:47:15 -04:00
|
|
|
}
|
|
|
|
$wp_list_table->prepare_items();
|
2013-04-28 21:10:50 -04:00
|
|
|
$wp_list_table->single_row( $theme );
|
2009-02-12 17:12:57 -05:00
|
|
|
}
|
|
|
|
|
2009-02-11 18:10:11 -05:00
|
|
|
/**
|
2022-03-28 09:17:05 -04:00
|
|
|
* Displays theme content based on theme list.
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
2015-05-28 22:06:31 -04:00
|
|
|
*
|
|
|
|
* @global WP_Theme_Install_List_Table $wp_list_table
|
2009-02-11 18:10:11 -05:00
|
|
|
*/
|
2010-08-11 17:54:51 -04:00
|
|
|
function display_themes() {
|
2010-08-22 07:22:46 -04:00
|
|
|
global $wp_list_table;
|
2009-04-19 15:36:28 -04:00
|
|
|
|
2014-03-11 03:47:15 -04:00
|
|
|
if ( ! isset( $wp_list_table ) ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
|
2014-03-11 03:47:15 -04:00
|
|
|
}
|
|
|
|
$wp_list_table->prepare_items();
|
2010-08-22 07:22:46 -04:00
|
|
|
$wp_list_table->display();
|
2014-03-11 03:47:15 -04:00
|
|
|
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-03-28 09:17:05 -04:00
|
|
|
* Displays theme information in dialog box form.
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
2015-05-28 22:06:31 -04:00
|
|
|
*
|
|
|
|
* @global WP_Theme_Install_List_Table $wp_list_table
|
2009-02-11 18:10:11 -05:00
|
|
|
*/
|
|
|
|
function install_theme_information() {
|
2014-03-11 03:47:15 -04:00
|
|
|
global $wp_list_table;
|
2010-03-19 04:03:52 -04:00
|
|
|
|
2013-03-01 12:14:09 -05:00
|
|
|
$theme = themes_api( 'theme_information', array( 'slug' => wp_unslash( $_REQUEST['theme'] ) ) );
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( is_wp_error( $theme ) ) {
|
2012-03-07 13:24:34 -05:00
|
|
|
wp_die( $theme );
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2009-02-26 18:35:38 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
iframe_header( __( 'Theme Installation' ) );
|
2014-03-11 03:47:15 -04:00
|
|
|
if ( ! isset( $wp_list_table ) ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
|
2014-03-11 03:47:15 -04:00
|
|
|
}
|
2012-03-07 13:24:34 -05:00
|
|
|
$wp_list_table->theme_installer_single( $theme );
|
2012-05-16 19:38:53 -04:00
|
|
|
iframe_footer();
|
|
|
|
exit;
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|