2009-02-11 18:10:11 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WordPress Theme Install Administration API
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2009-02-18 16:55:00 -05:00
|
|
|
$themes_allowedtags = array('a' => array('href' => array(), 'title' => array(), 'target' => array()),
|
2009-02-27 16:22:49 -05:00
|
|
|
'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())
|
|
|
|
);
|
|
|
|
|
|
|
|
$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-03-17 22:43:45 -04:00
|
|
|
|
2009-02-11 18:10:11 -05:00
|
|
|
/**
|
2009-04-07 19:58:35 -04:00
|
|
|
* Retrieve list of WordPress theme features (aka theme tags)
|
2009-02-11 18:10:11 -05:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
2011-12-14 12:36:38 -05:00
|
|
|
* @deprecated since 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
|
|
|
|
*/
|
2009-04-07 05:44:41 -04:00
|
|
|
function install_themes_feature_list( ) {
|
2009-04-07 17:44:23 -04:00
|
|
|
if ( !$cache = get_transient( 'wporg_theme_feature_list' ) )
|
2011-12-14 12:36:38 -05:00
|
|
|
set_transient( 'wporg_theme_feature_list', array( ), 10800);
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2011-12-14 12:36:38 -05:00
|
|
|
if ( $cache )
|
2009-04-07 17:44:23 -04:00
|
|
|
return $cache;
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2009-04-07 05:44:41 -04:00
|
|
|
$feature_list = themes_api( 'feature_list', array( ) );
|
|
|
|
if ( is_wp_error( $feature_list ) )
|
|
|
|
return $features;
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2009-04-07 17:44:23 -04:00
|
|
|
set_transient( 'wporg_theme_feature_list', $feature_list, 10800 );
|
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
|
|
|
/**
|
|
|
|
* Display search form for searching themes.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
2012-04-25 15:37:19 -04:00
|
|
|
function install_theme_search_form( $type_selector = true ) {
|
2012-04-29 20:44:47 -04:00
|
|
|
$type = isset( $_REQUEST['type'] ) ? stripslashes( $_REQUEST['type'] ) : 'term';
|
2009-04-07 05:44:41 -04:00
|
|
|
$term = isset( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : '';
|
2012-04-25 15:37:19 -04:00
|
|
|
if ( ! $type_selector )
|
|
|
|
echo '<p class="install-help">' . __( 'Search for themes by keyword.' ) . '</p>';
|
2009-02-11 18:10:11 -05:00
|
|
|
?>
|
2010-08-11 17:54:51 -04:00
|
|
|
<form id="search-themes" method="get" action="">
|
|
|
|
<input type="hidden" name="tab" value="search" />
|
2012-04-25 15:37:19 -04:00
|
|
|
<?php if ( $type_selector ) : ?>
|
2009-04-07 05:44:41 -04:00
|
|
|
<select name="type" id="typeselector">
|
2012-03-30 17:17:22 -04:00
|
|
|
<option value="term" <?php selected('term', $type) ?>><?php _e('Keyword'); ?></option>
|
2009-04-07 05:44:41 -04:00
|
|
|
<option value="author" <?php selected('author', $type) ?>><?php _e('Author'); ?></option>
|
2010-05-14 17:46:25 -04:00
|
|
|
<option value="tag" <?php selected('tag', $type) ?>><?php _ex('Tag', 'Theme Installer'); ?></option>
|
2009-04-07 05:44:41 -04:00
|
|
|
</select>
|
2012-04-25 15:37:19 -04:00
|
|
|
<?php endif; ?>
|
2012-03-09 20:23:48 -05:00
|
|
|
<input type="search" name="s" size="30" value="<?php echo esc_attr($term) ?>" />
|
2010-10-28 17:56:43 -04:00
|
|
|
<?php submit_button( __( 'Search' ), 'button', 'search', false ); ?>
|
2009-04-07 05:44:41 -04:00
|
|
|
</form>
|
|
|
|
<?php
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-04-07 05:44:41 -04:00
|
|
|
* Display 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 );
|
2009-04-07 05:44:41 -04: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
|
|
|
|
|
|
|
<form method="get" action="">
|
|
|
|
<input type="hidden" name="tab" value="search" />
|
2009-02-26 18:35:38 -05:00
|
|
|
<?php
|
2010-09-24 11:28:28 -04: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 );
|
2009-05-05 15:43:53 -04:00
|
|
|
$feature = esc_attr($feature);
|
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" />
|
|
|
|
<?php
|
|
|
|
} ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<br class="clear" />
|
2010-10-28 17:56:43 -04:00
|
|
|
<?php submit_button( __( 'Find Themes' ), 'button', 'search' ); ?>
|
2009-04-07 05:44:41 -04:00
|
|
|
</form>
|
|
|
|
<?php
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
2010-08-11 17:54:51 -04:00
|
|
|
add_action('install_themes_dashboard', 'install_themes_dashboard');
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2009-02-25 18:43:30 -05:00
|
|
|
function install_themes_upload($page = 1) {
|
2009-04-09 09:16:14 -04:00
|
|
|
?>
|
2009-02-26 18:35:38 -05:00
|
|
|
<h4><?php _e('Install a theme in .zip format') ?></h4>
|
2009-03-19 20:14:57 -04:00
|
|
|
<p class="install-help"><?php _e('If you have a theme in a .zip format, you may install it by uploading it here.') ?></p>
|
2010-10-21 13:06:52 -04:00
|
|
|
<form method="post" enctype="multipart/form-data" action="<?php echo self_admin_url('update.php?action=upload-theme') ?>">
|
2009-04-09 09:16:14 -04:00
|
|
|
<?php wp_nonce_field( 'theme-upload') ?>
|
|
|
|
<input type="file" name="themezip" />
|
2010-12-16 16:35:39 -05:00
|
|
|
<?php submit_button( __( 'Install Now' ), 'button', '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
|
|
|
}
|
2010-08-11 17:54:51 -04:00
|
|
|
add_action('install_themes_upload', 'install_themes_upload', 10, 1);
|
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
|
2012-03-07 12:35:17 -05:00
|
|
|
*/
|
|
|
|
function display_theme( $theme ) {
|
2012-03-07 13:29:36 -05:00
|
|
|
_deprecated_function( __FUNCTION__, '3.4' );
|
2012-03-07 13:24:34 -05:00
|
|
|
global $wp_list_table;
|
|
|
|
return $wp_list_table->single_row( $theme );
|
2009-02-12 17:12:57 -05:00
|
|
|
}
|
|
|
|
|
2009-02-11 18:10:11 -05:00
|
|
|
/**
|
|
|
|
* Display theme content based on theme list.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
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
|
|
|
|
2010-08-22 07:22:46 -04:00
|
|
|
$wp_list_table->display();
|
2009-02-11 18:10:11 -05:00
|
|
|
}
|
2010-08-11 17:54:51 -04:00
|
|
|
add_action('install_themes_search', 'display_themes');
|
|
|
|
add_action('install_themes_featured', 'display_themes');
|
|
|
|
add_action('install_themes_new', 'display_themes');
|
|
|
|
add_action('install_themes_updated', 'display_themes');
|
2009-02-11 18:10:11 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Display theme information in dialog box form.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
|
|
|
function install_theme_information() {
|
2012-03-07 13:24:34 -05:00
|
|
|
global $tab, $themes_allowedtags, $wp_list_table;
|
2010-03-19 04:03:52 -04:00
|
|
|
|
2012-03-07 13:24:34 -05:00
|
|
|
$theme = themes_api( 'theme_information', array( 'slug' => stripslashes( $_REQUEST['theme'] ) ) );
|
2009-02-11 18:10:11 -05:00
|
|
|
|
2012-03-07 13:24:34 -05:00
|
|
|
if ( is_wp_error( $theme ) )
|
|
|
|
wp_die( $theme );
|
2009-02-26 18:35:38 -05:00
|
|
|
|
2012-05-16 19:38:53 -04:00
|
|
|
iframe_header( __('Theme Install') );
|
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
|
|
|
}
|
2010-08-11 17:54:51 -04:00
|
|
|
add_action('install_themes_pre_theme-information', 'install_theme_information');
|