2007-08-17 06:33:52 -04:00
< ? php
2008-10-10 14:21:16 -04:00
/**
* WordPress Administration Update API
*
* @ package WordPress
* @ subpackage Admin
*/
2007-08-17 06:33:52 -04:00
2008-03-11 12:13:07 -04:00
// The admin side of our 1.1 update system
2007-08-17 06:33:52 -04:00
2008-10-31 14:51:06 -04:00
/**
* Selects the first update version from the update_core option
*
* @ return object the response from the API
*/
function get_preferred_from_update_core () {
$updates = get_core_updates ();
if ( ! is_array ( $updates ) )
return false ;
if ( empty ( $updates ) )
return ( object ) array ( 'response' => 'latest' );
return $updates [ 0 ];
}
/**
* Get available core updates
*
* @ param array $options Set $options [ 'dismissed' ] to true to show dismissed upgrades too ,
* set $options [ 'available' ] to false to skip not - dimissed updates .
* @ return array Array of the update objects
*/
function get_core_updates ( $options = array () ) {
$options = array_merge ( array ( 'available' => true , 'dismissed' => false ), $options );
$dismissed = get_option ( 'dismissed_update_core' );
if ( ! is_array ( $dismissed ) ) $dismissed = array ();
2009-02-06 13:06:20 -05:00
$from_api = get_transient ( 'update_core' );
2008-11-04 12:12:03 -05:00
if ( empty ( $from_api ) )
return false ;
2009-04-15 15:55:41 -04:00
if ( ! isset ( $from_api -> updates ) || ! is_array ( $from_api -> updates ) ) return false ;
2008-11-04 12:12:03 -05:00
$updates = $from_api -> updates ;
if ( ! is_array ( $updates ) ) return false ;
2008-10-31 14:51:06 -04:00
$result = array ();
2008-11-04 12:12:03 -05:00
foreach ( $updates as $update ) {
2008-10-31 14:51:06 -04:00
if ( array_key_exists ( $update -> current . '|' . $update -> locale , $dismissed ) ) {
if ( $options [ 'dismissed' ] ) {
$update -> dismissed = true ;
$result [] = $update ;
}
} else {
if ( $options [ 'available' ] ) {
$update -> dismissed = false ;
$result [] = $update ;
}
}
}
return $result ;
}
function dismiss_core_update ( $update ) {
$dismissed = get_option ( 'dismissed_update_core' );
$dismissed [ $update -> current . '|' . $update -> locale ] = true ;
return update_option ( 'dismissed_update_core' , $dismissed );
}
function undismiss_core_update ( $version , $locale ) {
$dismissed = get_option ( 'dismissed_update_core' );
$key = $version . '|' . $locale ;
if ( ! isset ( $dismissed [ $key ] ) ) return false ;
unset ( $dismissed [ $key ] );
return update_option ( 'dismissed_update_core' , $dismissed );
}
function find_core_update ( $version , $locale ) {
2009-02-06 13:06:20 -05:00
$from_api = get_transient ( 'update_core' );
2008-11-04 12:12:03 -05:00
if ( ! is_array ( $from_api -> updates ) ) return false ;
$updates = $from_api -> updates ;
foreach ( $updates as $update ) {
2008-10-31 14:51:06 -04:00
if ( $update -> current == $version && $update -> locale == $locale )
return $update ;
}
return false ;
}
2008-01-04 14:36:34 -05:00
function core_update_footer ( $msg = '' ) {
2007-08-30 14:21:03 -04:00
if ( ! current_user_can ( 'manage_options' ) )
return sprintf ( '| ' . __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2008-10-31 14:51:06 -04:00
$cur = get_preferred_from_update_core ();
2008-08-08 13:05:10 -04:00
if ( ! isset ( $cur -> current ) )
$cur -> current = '' ;
if ( ! isset ( $cur -> url ) )
$cur -> url = '' ;
2007-08-17 06:33:52 -04:00
2008-11-15 13:41:27 -05:00
if ( ! isset ( $cur -> response ) )
$cur -> response = '' ;
2007-08-17 06:33:52 -04:00
switch ( $cur -> response ) {
case 'development' :
2008-11-05 22:31:41 -05:00
return sprintf ( __ ( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), $GLOBALS [ 'wp_version' ], 'update-core.php' );
2007-08-17 06:33:52 -04:00
break ;
case 'upgrade' :
2008-03-11 12:13:07 -04:00
if ( current_user_can ( 'manage_options' ) ) {
2008-11-05 22:31:41 -05:00
return sprintf ( '<strong>' . __ ( '<a href="%1$s">Get Version %2$s</a>' ) . '</strong>' , 'update-core.php' , $cur -> current );
2008-03-11 12:13:07 -04:00
break ;
}
2007-08-17 06:33:52 -04:00
case 'latest' :
2007-08-30 12:25:50 -04:00
default :
2008-10-21 18:27:41 -04:00
return sprintf ( __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2007-08-17 06:33:52 -04:00
break ;
}
}
add_filter ( 'update_footer' , 'core_update_footer' );
function update_nag () {
2008-11-13 16:10:53 -05:00
global $pagenow ;
if ( 'update-core.php' == $pagenow )
return ;
2008-10-31 14:51:06 -04:00
$cur = get_preferred_from_update_core ();
2007-08-20 03:01:15 -04:00
2007-08-30 14:21:03 -04:00
if ( ! isset ( $cur -> response ) || $cur -> response != 'upgrade' )
return false ;
2007-08-20 03:01:15 -04:00
2007-08-30 14:21:03 -04:00
if ( current_user_can ( 'manage_options' ) )
2008-11-05 22:31:41 -05:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! <a href="%2$s">Please update now</a>.' ), $cur -> current , 'update-core.php' );
2007-08-30 14:21:03 -04:00
else
2008-08-08 18:49:35 -04:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! Please notify the site administrator.' ), $cur -> current );
2007-08-30 14:21:03 -04:00
echo " <div id='update-nag'> $msg </div> " ;
2007-08-17 06:33:52 -04:00
}
2008-11-10 13:17:47 -05:00
add_action ( 'admin_notices' , 'update_nag' , 3 );
2007-08-17 06:33:52 -04:00
2008-03-11 12:13:07 -04:00
// Called directly from dashboard
function update_right_now_message () {
2008-10-31 14:51:06 -04:00
$cur = get_preferred_from_update_core ();
2008-03-11 12:13:07 -04:00
2008-10-31 00:23:17 -04:00
$msg = sprintf ( __ ( 'You are using <span class="b">WordPress %s</span>.' ), $GLOBALS [ 'wp_version' ] );
2008-03-11 12:13:07 -04:00
if ( isset ( $cur -> response ) && $cur -> response == 'upgrade' && current_user_can ( 'manage_options' ) )
2008-11-05 22:31:41 -05:00
$msg .= " <a href='update-core.php' class='button'> " . sprintf ( __ ( 'Update to %s' ), $cur -> current ? $cur -> current : __ ( 'Latest' ) ) . '</a>' ;
2008-03-11 12:13:07 -04:00
echo " <span id='wp-version-message'> $msg </span> " ;
}
2008-06-04 14:09:31 -04:00
function wp_plugin_update_row ( $file , $plugin_data ) {
2009-02-06 13:06:20 -05:00
$current = get_transient ( 'update_plugins' );
2007-08-22 06:48:48 -04:00
if ( ! isset ( $current -> response [ $file ] ) )
return false ;
$r = $current -> response [ $file ];
2008-08-04 17:01:09 -04:00
$details_url = admin_url ( 'plugin-install.php?tab=plugin-information&plugin=' . $r -> slug . '&TB_iframe=true&width=600&height=800' );
2008-06-04 14:09:31 -04:00
echo '<tr><td colspan="5" class="plugin-update">' ;
2008-06-06 15:21:35 -04:00
if ( ! current_user_can ( 'update_plugins' ) )
2008-08-04 17:01:09 -04:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version );
2008-03-20 19:54:17 -04:00
else if ( empty ( $r -> package ) )
2008-08-04 17:01:09 -04:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a> <em>automatic upgrade unavailable for this plugin</em>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version );
2008-03-20 19:43:54 -04:00
else
2008-08-04 17:01:09 -04:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a> or <a href="%4$s">upgrade automatically</a>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version , wp_nonce_url ( 'update.php?action=upgrade-plugin&plugin=' . $file , 'upgrade-plugin_' . $file ) );
2009-05-05 01:19:53 -04:00
do_action ( " in_plugin_update_message- $file " , $plugin_data , $r );
2008-06-04 14:09:31 -04:00
echo '</td></tr>' ;
2007-08-22 06:48:48 -04:00
}
2008-06-04 14:09:31 -04:00
add_action ( 'after_plugin_row' , 'wp_plugin_update_row' , 10 , 2 );
2007-08-22 06:48:48 -04:00
2008-02-11 00:45:54 -05:00
function wp_update_plugin ( $plugin , $feedback = '' ) {
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 15:36:28 -04:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Plugin_Upgrader ();
return $upgrader -> upgrade ( $plugin );
2008-02-11 00:45:54 -05:00
}
2008-09-26 02:43:53 -04:00
function wp_update_theme ( $theme , $feedback = '' ) {
2009-04-20 14:18:39 -04:00
2008-09-26 02:43:53 -04:00
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 15:36:28 -04:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Theme_Upgrader ();
return $upgrader -> upgrade ( $theme );
2008-09-26 02:43:53 -04:00
}
2008-10-31 14:51:06 -04:00
function wp_update_core ( $current , $feedback = '' ) {
2009-04-20 14:18:39 -04:00
2008-08-08 18:49:35 -04:00
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 15:36:28 -04:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Core_Upgrader ();
return $upgrader -> upgrade ( $current );
2008-08-08 18:49:35 -04:00
}
2008-10-25 18:22:29 -04:00
function maintenance_nag () {
global $upgrading ;
if ( ! isset ( $upgrading ) )
return false ;
if ( current_user_can ( 'manage_options' ) )
2008-11-05 22:31:41 -05:00
$msg = sprintf ( __ ( 'An automated WordPress update has failed to complete - <a href="%s">please attempt the update again now</a>.' ), 'update-core.php' );
2008-10-25 18:22:29 -04:00
else
$msg = __ ( 'An automated WordPress update has failed to complete! Please notify the site administrator.' );
echo " <div id='update-nag'> $msg </div> " ;
}
add_action ( 'admin_notices' , 'maintenance_nag' );
2008-03-20 19:54:17 -04:00
?>