<?php // vars $button_url = ''; $button_text = ''; $confirm = true; // extract extract($args); // calculate add-ons (non pro only) $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="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> <?php if( !empty($plugins) ): ?> <p><?php printf(__("Please also ensure any premium add-ons (%s) have first been updated to the latest version.", 'acf'), implode(', ', $plugins) ); ?></p> <?php endif; ?> <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>