50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| // 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="notice">
 | |
| 	<div class="notice-container">
 | |
| 		<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 endif; ?>
 | |
| 		</div>
 | |
| 		<div class="col-actions">
 | |
| 			<a id="acf-upgrade-button" href="<?php echo $button_url; ?>" class="acf-btn"><?php echo $button_text; ?></a>
 | |
| 		</div>
 | |
| 		
 | |
| 	</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 endif; ?>
 |