- File:
-
- 1 edited
-
trunk/wp-admin/includes/plugin-install.php (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin-install.php
r14985 r16469 66 66 */ 67 67 function install_popular_tags( $args = array() ) { 68 if ( ! ($cache = wp_cache_get('popular_tags', 'api')) && ! ($cache = get_option('wporg_popular_tags')) ) 69 add_option('wporg_popular_tags', array(), '', 'no'); ///No autoload. 70 71 if ( $cache && $cache->timeout + 3 * 60 * 60 > time() ) 72 return $cache->cached; 68 $key = md5(serialize($args)); 69 if ( false !== ($tags = get_site_transient('poptags_' . $key) ) ) 70 return $tags; 73 71 74 72 $tags = plugins_api('hot_tags', $args); … … 77 75 return $tags; 78 76 79 $cache = (object) array('timeout' => time(), 'cached' => $tags); 80 81 update_option('wporg_popular_tags', $cache); 82 wp_cache_set('popular_tags', $cache, 'api'); 77 set_site_transient('poptags_' . $key, $tags, 10800); // 3 * 60 * 60 = 10800 83 78 84 79 return $tags; 85 80 } 86 add_action('install_plugins_search', 'install_search', 10, 1); 87 88 /** 89 * Display search results and display as tag cloud. 90 * 91 * @since 2.7.0 92 * 93 * @param string $page 94 */ 95 function install_search($page) { 96 $type = isset($_REQUEST['type']) ? stripslashes( $_REQUEST['type'] ) : ''; 97 $term = isset($_REQUEST['s']) ? stripslashes( $_REQUEST['s'] ) : ''; 98 99 $args = array(); 100 101 switch( $type ){ 102 case 'tag': 103 $args['tag'] = sanitize_title_with_dashes($term); 104 break; 105 case 'term': 106 $args['search'] = $term; 107 break; 108 case 'author': 109 $args['author'] = $term; 110 break; 111 } 112 113 $args['page'] = $page; 114 115 $api = plugins_api('query_plugins', $args); 116 117 if ( is_wp_error($api) ) 118 wp_die($api); 119 120 add_action('install_plugins_table_header', 'install_search_form'); 121 122 display_plugins_table($api->plugins, $api->info['page'], $api->info['pages']); 123 124 return; 125 } 126 127 add_action('install_plugins_dashboard', 'install_dashboard'); 81 128 82 function install_dashboard() { 129 83 ?> … … 148 102 foreach ( (array)$api_tags as $tag ) 149 103 $tags[ $tag['name'] ] = (object) array( 150 'link' => esc_url( admin_url('plugin-install.php?tab=search&type=tag&s=' . urlencode($tag['name'])) ),104 'link' => esc_url( self_admin_url('plugin-install.php?tab=search&type=tag&s=' . urlencode($tag['name'])) ), 151 105 'name' => $tag['name'], 152 106 'id' => sanitize_title_with_dashes($tag['name']), … … 156 110 echo '</p><br class="clear" />'; 157 111 } 112 add_action('install_plugins_dashboard', 'install_dashboard'); 158 113 159 114 /** … … 166 121 $term = isset($_REQUEST['s']) ? stripslashes( $_REQUEST['s'] ) : ''; 167 122 168 ?><form id="search-plugins" method="post" action="<?php echo admin_url('plugin-install.php?tab=search'); ?>"> 123 ?><form id="search-plugins" method="get" action=""> 124 <input type="hidden" name="tab" value="search" /> 169 125 <select name="type" id="typeselector"> 170 126 <option value="term"<?php selected('term', $type) ?>><?php _e('Term'); ?></option> … … 174 130 <input type="text" name="s" value="<?php echo esc_attr($term) ?>" /> 175 131 <label class="screen-reader-text" for="plugin-search-input"><?php _e('Search Plugins'); ?></label> 176 < input type="submit" id="plugin-search-input" name="search" value="<?php esc_attr_e('Search Plugins'); ?>" class="button" />132 <?php submit_button( __( 'Search Plugins' ), 'button', 'plugin-search-input', false ); ?> 177 133 </form><?php 178 134 } 179 135 180 add_action('install_plugins_featured', 'install_featured', 10, 1);181 /**182 * Display featured plugins.183 *184 * @since 2.7.0185 *186 * @param string $page187 */188 function install_featured($page = 1) {189 $args = array('browse' => 'featured', 'page' => $page);190 $api = plugins_api('query_plugins', $args);191 if ( is_wp_error($api) )192 wp_die($api->get_error_message() . '</p> <p class="hide-if-no-js"><a href="#" onclick="document.location.reload(); return false;">' . __('Try again') . '</a>');193 display_plugins_table($api->plugins, $api->info['page'], $api->info['pages']);194 }195 196 add_action('install_plugins_popular', 'install_popular', 10, 1);197 /**198 * Display popular plugins.199 *200 * @since 2.7.0201 *202 * @param string $page203 */204 function install_popular($page = 1) {205 $args = array('browse' => 'popular', 'page' => $page);206 $api = plugins_api('query_plugins', $args);207 if ( is_wp_error($api) )208 wp_die($api->get_error_message() . '</p> <p class="hide-if-no-js"><a href="#" onclick="document.location.reload(); return false;">' . __('Try again') . '</a>');209 display_plugins_table($api->plugins, $api->info['page'], $api->info['pages']);210 }211 212 add_action('install_plugins_upload', 'install_plugins_upload', 10, 1);213 136 /** 214 137 * Upload from zip … … 221 144 <h4><?php _e('Install a plugin in .zip format') ?></h4> 222 145 <p class="install-help"><?php _e('If you have a plugin in a .zip format, you may install it by uploading it here.') ?></p> 223 <form method="post" enctype="multipart/form-data" action="<?php echo admin_url('update.php?action=upload-plugin') ?>">146 <form method="post" enctype="multipart/form-data" action="<?php echo self_admin_url('update.php?action=upload-plugin') ?>"> 224 147 <?php wp_nonce_field( 'plugin-upload') ?> 225 148 <label class="screen-reader-text" for="pluginzip"><?php _e('Plugin zip file'); ?></label> … … 229 152 <?php 230 153 } 231 232 add_action('install_plugins_new', 'install_new', 10, 1); 233 /** 234 * Display new plugins. 235 * 236 * @since 2.7.0 237 * 238 * @param string $page 239 */ 240 function install_new($page = 1) { 241 $args = array('browse' => 'new', 'page' => $page); 242 $api = plugins_api('query_plugins', $args); 243 if ( is_wp_error($api) ) 244 wp_die($api->get_error_message() . '</p> <p class="hide-if-no-js"><a href="#" onclick="document.location.reload(); return false;">' . __('Try again') . '</a>'); 245 display_plugins_table($api->plugins, $api->info['page'], $api->info['pages']); 246 } 247 add_action('install_plugins_updated', 'install_updated', 10, 1); 248 249 250 /** 251 * Display recently updated plugins. 252 * 253 * @since 2.7.0 254 * 255 * @param string $page 256 */ 257 function install_updated($page = 1) { 258 $args = array('browse' => 'updated', 'page' => $page); 259 $api = plugins_api('query_plugins', $args); 260 if ( is_wp_error($api) ) 261 wp_die($api->get_error_message() . '</p> <p class="hide-if-no-js"><a href="#" onclick="document.location.reload(); return false;">' . __('Try again') . '</a>'); 262 display_plugins_table($api->plugins, $api->info['page'], $api->info['pages']); 263 } 154 add_action('install_plugins_upload', 'install_plugins_upload', 10, 1); 264 155 265 156 /** … … 267 158 * 268 159 * @since 2.7.0 269 * 270 * @param array $plugins List of plugins. 271 * @param string $page 272 * @param int $totalpages Number of pages. 273 */ 274 function display_plugins_table($plugins, $page = 1, $totalpages = 1){ 275 $type = isset($_REQUEST['type']) ? stripslashes( $_REQUEST['type'] ) : ''; 276 $term = isset($_REQUEST['s']) ? stripslashes( $_REQUEST['s'] ) : ''; 277 278 $plugins_allowedtags = array('a' => array('href' => array(),'title' => array(), 'target' => array()), 279 'abbr' => array('title' => array()),'acronym' => array('title' => array()), 280 'code' => array(), 'pre' => array(), 'em' => array(),'strong' => array(), 281 'ul' => array(), 'ol' => array(), 'li' => array(), 'p' => array(), 'br' => array()); 282 283 ?> 284 <div class="tablenav"> 285 <div class="alignleft actions"> 286 <?php do_action('install_plugins_table_header'); ?> 287 </div> 288 <?php 289 $url = esc_url($_SERVER['REQUEST_URI']); 290 if ( ! empty($term) ) 291 $url = add_query_arg('s', $term, $url); 292 if ( ! empty($type) ) 293 $url = add_query_arg('type', $type, $url); 294 295 $page_links = paginate_links( array( 296 'base' => add_query_arg('paged', '%#%', $url), 297 'format' => '', 298 'prev_text' => __('«'), 299 'next_text' => __('»'), 300 'total' => $totalpages, 301 'current' => $page 302 )); 303 304 if ( $page_links ) 305 echo "\t\t<div class='tablenav-pages'>$page_links</div>"; 306 ?> 307 <br class="clear" /> 308 </div> 309 <table class="widefat" id="install-plugins" cellspacing="0"> 310 <thead> 311 <tr> 312 <th scope="col" class="name"><?php _e('Name'); ?></th> 313 <th scope="col" class="num"><?php _e('Version'); ?></th> 314 <th scope="col" class="num"><?php _e('Rating'); ?></th> 315 <th scope="col" class="desc"><?php _e('Description'); ?></th> 316 </tr> 317 </thead> 318 319 <tfoot> 320 <tr> 321 <th scope="col" class="name"><?php _e('Name'); ?></th> 322 <th scope="col" class="num"><?php _e('Version'); ?></th> 323 <th scope="col" class="num"><?php _e('Rating'); ?></th> 324 <th scope="col" class="desc"><?php _e('Description'); ?></th> 325 </tr> 326 </tfoot> 327 328 <tbody class="plugins"> 329 <?php 330 if ( empty($plugins) ) 331 echo '<tr><td colspan="5">', __('No plugins match your request.'), '</td></tr>'; 332 333 foreach ( (array) $plugins as $plugin ){ 334 if ( is_object($plugin) ) 335 $plugin = (array) $plugin; 336 337 $title = wp_kses($plugin['name'], $plugins_allowedtags); 338 //Limit description to 400char, and remove any HTML. 339 $description = strip_tags($plugin['description']); 340 if ( strlen($description) > 400 ) 341 $description = mb_substr($description, 0, 400) . '…'; 342 //remove any trailing entities 343 $description = preg_replace('/&[^;\s]{0,6}$/', '', $description); 344 //strip leading/trailing & multiple consecutive lines 345 $description = trim($description); 346 $description = preg_replace("|(\r?\n)+|", "\n", $description); 347 //\n => <br> 348 $description = nl2br($description); 349 $version = wp_kses($plugin['version'], $plugins_allowedtags); 350 351 $name = strip_tags($title . ' ' . $version); 352 353 $author = $plugin['author']; 354 if ( ! empty($plugin['author']) ) 355 $author = ' <cite>' . sprintf( __('By %s'), $author ) . '.</cite>'; 356 357 $author = wp_kses($author, $plugins_allowedtags); 358 359 $action_links = array(); 360 $action_links[] = '<a href="' . admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin['slug'] . 361 '&TB_iframe=true&width=600&height=550') . '" class="thickbox" title="' . 362 esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '">' . __('Details') . '</a>'; 363 364 if ( current_user_can('install_plugins') || current_user_can('update_plugins') ) { 365 $status = install_plugin_install_status($plugin); 366 367 switch ( $status['status'] ) { 368 case 'install': 369 if ( $status['url'] ) 370 $action_links[] = '<a class="install-now" href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __('Install Now') . '</a>'; 371 break; 372 case 'update_available': 373 if ( $status['url'] ) 374 $action_links[] = '<a href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $status['version'] ) ) . '">' . sprintf( __('Update Now'), $status['version'] ) . '</a>'; 375 break; 376 case 'latest_installed': 377 case 'newer_installed': 378 $action_links[] = '<span title="' . esc_attr__( 'This plugin is already installed and is up to date' ) . ' ">' . __('Installed') . '</span>'; 379 break; 380 } 381 } 382 383 $action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin ); 384 ?> 385 <tr> 386 <td class="name"><strong><?php echo $title; ?></strong> 387 <div class="action-links"><?php if ( !empty($action_links) ) echo implode(' | ', $action_links); ?></div> 388 </td> 389 <td class="vers"><?php echo $version; ?></td> 390 <td class="vers"> 391 <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $plugin['num_ratings']), number_format_i18n($plugin['num_ratings'])) ?>"> 392 <div class="star star-rating" style="width: <?php echo esc_attr($plugin['rating']) ?>px"></div> 393 <div class="star star5"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('5 stars') ?>" /></div> 394 <div class="star star4"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('4 stars') ?>" /></div> 395 <div class="star star3"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('3 stars') ?>" /></div> 396 <div class="star star2"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('2 stars') ?>" /></div> 397 <div class="star star1"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('1 star') ?>" /></div> 398 </div> 399 </td> 400 <td class="desc"><?php echo $description, $author; ?></td> 401 </tr> 402 <?php 403 } 404 ?> 405 </tbody> 406 </table> 407 408 <div class="tablenav"> 409 <?php if ( $page_links ) 410 echo "\t\t<div class='tablenav-pages'>$page_links</div>"; ?> 411 <br class="clear" /> 412 </div> 413 414 <?php 415 } 416 417 add_action('install_plugins_pre_plugin-information', 'install_plugin_information'); 160 */ 161 function display_plugins_table() { 162 global $wp_list_table; 163 164 $wp_list_table->display(); 165 } 166 add_action('install_plugins_search', 'display_plugins_table'); 167 add_action('install_plugins_featured', 'display_plugins_table'); 168 add_action('install_plugins_popular', 'display_plugins_table'); 169 add_action('install_plugins_new', 'display_plugins_table'); 170 add_action('install_plugins_updated', 'display_plugins_table'); 418 171 419 172 /** … … 440 193 $version = $plugin->new_version; 441 194 if ( current_user_can('update_plugins') ) 442 $url = wp_nonce_url( admin_url('update.php?action=upgrade-plugin&plugin=' . $update_file), 'upgrade-plugin_' . $update_file);195 $url = wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin=' . $update_file), 'upgrade-plugin_' . $update_file); 443 196 break; 444 197 } … … 451 204 if ( empty($installed_plugin) ) { 452 205 if ( current_user_can('install_plugins') ) 453 $url = wp_nonce_url( admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);206 $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug); 454 207 } else { 455 208 $key = array_shift( $key = array_keys($installed_plugin) ); //Use the first plugin regardless of the name, Could have issues for multiple-plugins in one directory if they share different version numbers … … 471 224 // "install" & no directory with that slug 472 225 if ( current_user_can('install_plugins') ) 473 $url = wp_nonce_url( admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);226 $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug); 474 227 } 475 228 } … … 614 367 exit; 615 368 } 369 add_action('install_plugins_pre_plugin-information', 'install_plugin_information'); 370
Note: See TracChangeset
for help on using the changeset viewer.