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
<?php
class ITSEC_Privilege_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
*
* @return void
*/
public function execute_uninstall() {
delete_site_option( 'itsec_privilege' );
}
/**
* Execute module upgrade
*
* @param int $itsec_old_version
*/
public function execute_upgrade( $itsec_old_version ) {
if ( $itsec_old_version < 4041 ) {
$current_options = get_site_option( 'itsec_privilege' );
// 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( 'privilege' );
} else {
ITSEC_Modules::deactivate( 'privilege' );
}
}
}
if ( $itsec_old_version < 4068 ) {
delete_site_option( 'itsec_privilege' );
}
}
}
new ITSEC_Privilege_Setup();
