File "html-notice-upgrade.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/advanced-custom-fields/includes/admin/views/html-notice-upgrade.php
File
size: 1.69 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
$plugins = array();
if (!acf_get_setting('pro')) {
if (is_plugin_active('acf-repeater/acf-repeater.php')) {
$plugins[] = __('Repeater', 'acf');
}
if (is_plugin_active('acf-flexible-content/acf-flexible-content.php')) {
$plugins[] = __('Flexible Content', 'acf');
}
if (is_plugin_active('acf-gallery/acf-gallery.php')) {
$plugins[] = __('Gallery', 'acf');
}
if (is_plugin_active('acf-options-page/acf-options-page.php')) {
$plugins[] = __('Options Page', 'acf');
}
}
?>
<div id="acf-upgrade-notice" class="notice">
<div class="col-content">
<img src="<?php
echo acf_get_url('assets/images/acf-logo.png');
?>" />
<h2><?php
_e('Database Upgrade Required', 'acf');
?></h2>
<p><?php
printf(__('Thank you for updating to %1$s v%2$s!', 'acf'), acf_get_setting('name'), acf_get_setting('version'));
?><br /><?php
_e('This version contains improvements to your database and requires an upgrade.', 'acf');
?></p>
<?php
if (!empty($plugins)) {
?>
<p><?php
printf(__('Please also check all premium add-ons (%s) are updated to the latest version.', 'acf'), implode(', ', $plugins));
?></p>
<?php
}
?>
</div>
<div class="col-actions">
<a id="acf-upgrade-button" href="<?php
echo $button_url;
?>" class="button button-primary button-hero"><?php
echo $button_text;
?></a>
</div>
</div>
<?php
if ($confirm) {
?>
<script type="text/javascript">
(function($) {
$("#acf-upgrade-button").on("click", function(){
return 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');
?>");
});
})(jQuery);
</script>
<?php
}