Changeset 20138 for trunk/wp-admin/includes/theme-install.php
- Timestamp:
- 03/07/2012 05:35:17 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/theme-install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/theme-install.php
r20029 r20138 128 128 add_action('install_themes_upload', 'install_themes_upload', 10, 1); 129 129 130 function display_theme($theme, $actions = null, $show_details = true) { 130 /* 131 * Prints a theme on the Install Themes pages. 132 * 133 * @param object $theme An object that contains theme data returned by the WordPress.org API. 134 * 135 * Example theme data: 136 * object(stdClass)[59] 137 * public 'name' => string 'Magazine Basic' (length=14) 138 * public 'slug' => string 'magazine-basic' (length=14) 139 * public 'version' => string '1.1' (length=3) 140 * public 'author' => string 'tinkerpriest' (length=12) 141 * public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' (length=36) 142 * public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' (length=68) 143 * public 'rating' => float 80 144 * public 'num_ratings' => int 1 145 * public 'homepage' => string 'http://wordpress.org/extend/themes/magazine-basic' (length=49) 146 * 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) 147 * public 'download_link' => string 'http://wordpress.org/extend/themes/download/magazine-basic.1.1.zip' (length=66) 148 */ 149 function display_theme( $theme ) { 131 150 global $themes_allowedtags; 132 151 133 if ( empty( $theme) )152 if ( empty( $theme ) ) 134 153 return; 135 154 136 $name = wp_kses($theme->name, $themes_allowedtags); 137 $author = wp_kses($theme->author, $themes_allowedtags); 138 $desc = wp_kses($theme->description, $themes_allowedtags); 139 //if ( strlen($desc) > 30 ) 140 // $desc = substr($desc, 0, 15) . '<span class="dots">...</span><span>' . substr($desc, -15) . '</span>'; 141 142 $preview_link = $theme->preview_url . '?TB_iframe=true&width=600&height=400'; 143 if ( !is_array($actions) ) { 144 $actions = array(); 145 $actions[] = '<a href="' . self_admin_url('theme-install.php?tab=theme-information&theme=' . $theme->slug . 146 '&TB_iframe=true&tbWidth=500&tbHeight=385') . '" class="thickbox thickbox-preview onclick" title="' . esc_attr(sprintf(__('Install “%s”'), $name)) . '">' . __('Install') . '</a>'; 147 if ( !is_network_admin() ) 148 $actions[] = '<a href="' . $preview_link . '" class="thickbox thickbox-preview onclick previewlink" title="' . esc_attr(sprintf(__('Preview “%s”'), $name)) . '">' . __('Preview') . '</a>'; 149 $actions = apply_filters('theme_install_action_links', $actions, $theme); 150 } 151 152 $actions = implode ( ' | ', $actions ); 155 $name = wp_kses( $theme->name, $themes_allowedtags ); 156 $author = wp_kses( $theme->author, $themes_allowedtags ); 157 158 $num_ratings = sprintf( _n( '(based on %s rating)', '(based on %s ratings)', $theme->num_ratings ), number_format_i18n( $theme->num_ratings ) ); 159 160 $preview_url = add_query_arg( 'theme_preview', '1' ); 161 $preview_title = sprintf( __('Preview “%s”'), $name ); 162 163 $install_url = add_query_arg( array( 164 'action' => 'install-theme', 165 'theme' => $theme->slug, 166 ), self_admin_url( 'update.php' ) ); 167 153 168 ?> 154 <a class='thickbox thickbox-preview screenshot' 155 href='<?php echo esc_url($preview_link); ?>' 156 title='<?php echo esc_attr(sprintf(__('Preview “%s”'), $name)); ?>'> 157 <img src='<?php echo esc_url($theme->screenshot_url); ?>' width='150' /> 158 </a> 159 <h3><?php 160 /* translators: 1: theme name, 2: author name */ 161 printf( __( '%1$s <span>by %2$s</span>' ), $name, $author ); ?></h3> 162 <span class='action-links'><?php echo $actions ?></span> 163 <?php if ( $show_details ) { ?> 164 <span class="separator hide-if-no-js">| </span><a href="#theme_detail" class="theme-detail hide-if-no-js" tabindex='4'><?php _e('Details') ?></a> 165 <div class="themedetaildiv hide-if-js"> 166 <p><?php echo $desc ?></p> 167 <p><strong><?php _e('Version:') ?></strong> <?php echo wp_kses($theme->version, $themes_allowedtags) ?></p> 168 <?php if ( ! empty($theme->last_updated) ) : ?> 169 <p><strong><?php _e('Last Updated:') ?></strong> <span title="<?php echo $theme->last_updated ?>"><?php printf( __('%s ago'), human_time_diff(strtotime($theme->last_updated)) ) ?></span></p> 170 <?php endif; if ( ! empty($theme->requires) ) : ?> 171 <p><strong><?php _e('Requires WordPress Version:') ?></strong> <?php printf(__('%s or higher'), $theme->requires) ?></p> 172 <?php endif; if ( ! empty($theme->tested) ) : ?> 173 <p><strong><?php _e('Compatible up to:') ?></strong> <?php echo $theme->tested ?></p> 174 <?php endif; if ( !empty($theme->downloaded) ) : ?> 175 <p><strong><?php _e('Downloaded:') ?></strong> <?php printf(_n('%s time', '%s times', $theme->downloaded), number_format_i18n($theme->downloaded)) ?></p> 176 <?php endif; ?> 177 <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $theme->num_ratings), number_format_i18n($theme->num_ratings)) ?>"> 178 <div class="star star-rating" style="width: <?php echo esc_attr($theme->rating) ?>px"></div> 179 <div class="star star5"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('5 stars') ?>" /></div> 180 <div class="star star4"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('4 stars') ?>" /></div> 181 <div class="star star3"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('3 stars') ?>" /></div> 182 <div class="star star2"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('2 stars') ?>" /></div> 183 <div class="star star1"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('1 star') ?>" /></div> 184 </div> 185 </div> 186 <?php } 187 /* 188 object(stdClass)[59] 189 public 'name' => string 'Magazine Basic' (length=14) 190 public 'slug' => string 'magazine-basic' (length=14) 191 public 'version' => string '1.1' (length=3) 192 public 'author' => string 'tinkerpriest' (length=12) 193 public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' (length=36) 194 public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' (length=68) 195 public 'rating' => float 80 196 public 'num_ratings' => int 1 197 public 'homepage' => string 'http://wordpress.org/extend/themes/magazine-basic' (length=49) 198 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) 199 public 'download_link' => string 'http://wordpress.org/extend/themes/download/magazine-basic.1.1.zip' (length=66) 200 */ 169 <a class="screenshot" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>"> 170 <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' /> 171 </a> 172 173 <h3><?php 174 /* translators: 1: theme name, 2: author name */ 175 printf( __( '%1$s <span>by %2$s</span>' ), $name, $author ); 176 ?></h3> 177 178 <div class="install-theme-info"> 179 <a class="theme-install button-primary" href="<?php echo wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ); ?>"><?php _e( 'Install' ); ?></a> 180 <h3 class="theme-name"><?php echo $name; ?></h3> 181 <span class="theme-by"><?php printf( __( 'By %s' ), $author ); ?></span> 182 <img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" /> 183 <div class="theme-rating" title="<?php echo esc_attr( $num_ratings ); ?>"> 184 <div style="width:<?php echo esc_attr( intval( $theme->rating ) . 'px' ); ?>;"></div> 185 </div> 186 <div class="theme-version"> 187 <strong><?php _e('Version:') ?> </strong> 188 <?php echo wp_kses( $theme->version, $themes_allowedtags ); ?> 189 </div> 190 <div class="theme-description"> 191 <?php echo wp_kses( $theme->description, $themes_allowedtags ); ?> 192 </div> 193 <input class="theme-preview-url" type="hidden" value="<?php echo esc_url( $theme->preview_url ); ?>" /> 194 </div> 195 <?php 201 196 } 202 197
Note: See TracChangeset
for help on using the changeset viewer.