49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
// defaults
|
|
$args = wp_parse_args($args, array(
|
|
'button_url' => '',
|
|
'button_text' => '',
|
|
'confirm' => true
|
|
));
|
|
|
|
extract($args);
|
|
|
|
?>
|
|
<div id="acf-upgrade-notice" class="acf-cf">
|
|
|
|
<div class="inner">
|
|
|
|
<div class="acf-icon logo">
|
|
<i class="acf-sprite-logo"></i>
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<h2><?php _e("Database Upgrade Required",'acf'); ?></h2>
|
|
|
|
<p><?php printf(__("Thank you for updating to %s v%s!", 'acf'), acf_get_setting('name'), acf_get_setting('version') ); ?><br /><?php _e("Before you start using the new awesome features, please update your database to the newest version.", 'acf'); ?></p>
|
|
|
|
<p><a id="acf-notice-action" href="<?php echo $button_url; ?>" class="button button-primary"><?php echo $button_text; ?></a></p>
|
|
|
|
<?php if( $confirm ): ?>
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
|
|
$("#acf-notice-action").on("click", function(){
|
|
|
|
var answer = 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 answer;
|
|
|
|
});
|
|
|
|
})(jQuery);
|
|
</script>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|