216 lines
5.4 KiB
PHP
216 lines
5.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Network Admin Database Upgrade
|
|
*
|
|
* Shows the databse upgrade process.
|
|
*
|
|
* @date 24/8/18
|
|
* @since 5.7.4
|
|
* @param void
|
|
*/
|
|
|
|
?>
|
|
<style type="text/css">
|
|
|
|
/* hide steps */
|
|
.show-on-complete {
|
|
display: none;
|
|
}
|
|
|
|
</style>
|
|
<div id="acf-upgrade-wrap" class="wrap">
|
|
|
|
<h1><?php _e("Upgrade Database", 'acf'); ?></h1>
|
|
|
|
<p><?php echo sprintf( __("The following sites require a DB upgrade. Check the ones you want to update and then click %s.", 'acf'), '"' . __('Upgrade Sites', 'acf') . '"'); ?></p>
|
|
<p><input type="submit" name="upgrade" value="<?php _e('Upgrade Sites', 'acf'); ?>" class="button" id="upgrade-sites"></p>
|
|
|
|
<table class="wp-list-table widefat">
|
|
<thead>
|
|
<tr>
|
|
<td class="manage-column check-column" scope="col">
|
|
<input type="checkbox" id="sites-select-all">
|
|
</td>
|
|
<th class="manage-column" scope="col" style="width:33%;">
|
|
<label for="sites-select-all"><?php _e("Site", 'acf'); ?></label>
|
|
</th>
|
|
<th><?php _e("Description", 'acf'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<td class="manage-column check-column" scope="col">
|
|
<input type="checkbox" id="sites-select-all-2">
|
|
</td>
|
|
<th class="manage-column" scope="col">
|
|
<label for="sites-select-all-2"><?php _e("Site", 'acf'); ?></label>
|
|
</th>
|
|
<th><?php _e("Description", 'acf'); ?></th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody id="the-list">
|
|
<?php
|
|
|
|
$sites = acf_get_sites();
|
|
if( $sites ):
|
|
foreach( $sites as $i => $site ):
|
|
|
|
// switch blog
|
|
switch_to_blog( $site['blog_id'] );
|
|
|
|
?>
|
|
<tr<?php if( $i % 2 == 0 ): ?> class="alternate"<?php endif; ?>>
|
|
<th class="check-column" scope="row">
|
|
<?php if( acf_has_upgrade() ): ?>
|
|
<input type="checkbox" value="<?php echo $site['blog_id']; ?>" name="checked[]">
|
|
<?php endif; ?>
|
|
</th>
|
|
<td>
|
|
<strong><?php echo get_bloginfo('name'); ?></strong><br /><?php echo home_url(); ?>
|
|
</td>
|
|
<td>
|
|
<?php if( acf_has_upgrade() ): ?>
|
|
<span class="response"><?php printf(__('Site requires database upgrade from %s to %s', 'acf'), acf_get_db_version(), ACF_VERSION); ?></span>
|
|
<?php else: ?>
|
|
<?php _e("Site is up to date", 'acf'); ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
|
|
// restore
|
|
restore_current_blog();
|
|
|
|
endforeach;
|
|
endif;
|
|
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p><input type="submit" name="upgrade" value="<?php _e('Upgrade Sites', 'acf'); ?>" class="button" id="upgrade-sites-2"></p>
|
|
<p class="show-on-complete"><?php echo sprintf( __('Database Upgrade complete. <a href="%s">Return to network dashboard</a>', 'acf'), network_admin_url() ); ?></p>
|
|
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
|
|
var upgrader = new acf.Model({
|
|
events: {
|
|
'click #upgrade-sites': 'onClick',
|
|
'click #upgrade-sites-2': 'onClick'
|
|
},
|
|
$inputs: function(){
|
|
return $('#the-list input:checked');
|
|
},
|
|
onClick: function( e, $el ){
|
|
|
|
// prevent default
|
|
e.preventDefault();
|
|
|
|
// bail early if no selection
|
|
if( !this.$inputs().length ) {
|
|
return alert('<?php _e('Please select at least one site to upgrade.', 'acf'); ?>');
|
|
}
|
|
|
|
// confirm action
|
|
if( !confirm("<?php _e('It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?', 'acf'); ?>") ) {
|
|
return;
|
|
}
|
|
|
|
// upgrade
|
|
this.upgrade();
|
|
},
|
|
upgrade: function(){
|
|
|
|
// vars
|
|
var $inputs = this.$inputs();
|
|
|
|
// bail early if no sites selected
|
|
if( !$inputs.length ) {
|
|
return this.complete();
|
|
}
|
|
|
|
// disable buttons
|
|
$('.button').prop('disabled', true);
|
|
|
|
// vars
|
|
var $input = $inputs.first();
|
|
var $row = $input.closest('tr');
|
|
var text = '';
|
|
var success = false;
|
|
|
|
// show loading
|
|
$row.find('.response').html('<i class="acf-loading"></i></span> <?php printf(__('Upgrading data to version %s', 'acf'), ACF_VERSION); ?>');
|
|
|
|
// send ajax request to upgrade DB
|
|
$.ajax({
|
|
url: acf.get('ajaxurl'),
|
|
dataType: 'json',
|
|
type: 'post',
|
|
data: acf.prepareForAjax({
|
|
action: 'acf/ajax/upgrade',
|
|
blog_id: $input.val()
|
|
}),
|
|
success: function( json ){
|
|
|
|
// success
|
|
if( acf.isAjaxSuccess(json) ) {
|
|
|
|
// update
|
|
success = true;
|
|
|
|
// remove input
|
|
$input.remove();
|
|
|
|
// set response text
|
|
text = '<?php _e('Upgrade complete.', 'acf'); ?>';
|
|
if( jsonText = acf.getAjaxMessage(json) ) {
|
|
text = jsonText;
|
|
}
|
|
|
|
// error
|
|
} else {
|
|
|
|
// set response text
|
|
text = '<?php _e('Upgrade failed.', 'acf'); ?>';
|
|
if( jsonText = acf.getAjaxError(json) ) {
|
|
text += ' <pre>' + jsonText + '</pre>';
|
|
}
|
|
}
|
|
},
|
|
error: function( jqXHR, textStatus, errorThrown ){
|
|
|
|
// set response text
|
|
text = '<?php _e('Upgrade failed.', 'acf'); ?>';
|
|
if( errorThrown) {
|
|
text += ' <pre>' + errorThrown + '</pre>';
|
|
}
|
|
},
|
|
complete: this.proxy(function(){
|
|
|
|
// display text
|
|
$row.find('.response').html( text );
|
|
|
|
// if successful upgrade, proceed to next site. Otherwise, skip to complete.
|
|
if( success ) {
|
|
this.upgrade();
|
|
} else {
|
|
this.complete();
|
|
}
|
|
})
|
|
});
|
|
},
|
|
complete: function(){
|
|
|
|
// enable buttons
|
|
$('.button').prop('disabled', false);
|
|
|
|
// show message
|
|
$('.show-on-complete').show();
|
|
}
|
|
});
|
|
|
|
})(jQuery);
|
|
</script>
|
|
</div>
|