File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pabloaso/public_html/wp-content/plugins/ithemes-security-pro/pro/recaptcha/setup.php
<?php

class ITSEC_Recaptcha_Setup {

	public function __construct() {
		add_action( 'itsec_modules_do_plugin_uninstall', array( $this, 'execute_uninstall' ) );
		add_action( 'itsec_modules_do_plugin_upgrade', array( $this, 'execute_upgrade' ) );
	}

	/**
	 * Execute module uninstall
	 *
	 * @since 1.13
	 *
	 * @return void
	 */
	public function execute_uninstall() {
		delete_site_option( 'itsec_recaptcha' );
	}

	/**
	 * Execute module upgrade
	 *
	 * @since 1.13
	 *
	 * @return void
	 */
	public function execute_upgrade( $itsec_old_version ) {
		if ( $itsec_old_version < 4041 ) {
			$current_options = get_site_option( 'itsec_recaptcha' );

			// If there are no current options, go with the new defaults by not saving anything
			if ( is_array( $current_options ) ) {
				// Make sure the new module is properly activated or deactivated
				if ( $current_options['enabled'] ) {
					ITSEC_Modules::activate( 'recaptcha' );
				} else {
					ITSEC_Modules::deactivate( 'recaptcha' );
				}

				$defaults = ITSEC_Modules::get_defaults( 'recaptcha' );
				$options  = $defaults;

				foreach ( $defaults as $name => $value ) {
					if ( isset( $current_options[ $name ] ) ) {
						$options[ $name ] = $current_options[ $name ];
					}
				}


				ITSEC_Modules::set_settings( 'recaptcha', $options );
			}
		}
	}
}

new ITSEC_Recaptcha_Setup();