Server IP : 192.64.118.117 / Your IP : 18.224.59.3 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/mobilecreationz.com/wp-content/plugins/better-wp-security/core/modules/pro/ |
Upload File : |
<?php if ( ! class_exists( 'ITSEC_Pro_Setup' ) ) { class ITSEC_Pro_Setup { public function __construct() { add_action( 'itsec_modules_do_plugin_activation', array( $this, 'execute_activate' ) ); add_action( 'itsec_modules_do_plugin_deactivation', array( $this, 'execute_deactivate' ) ); add_action( 'itsec_modules_do_plugin_uninstall', array( $this, 'execute_uninstall' ) ); add_action( 'itsec_modules_do_plugin_upgrade', array( $this, 'execute_upgrade' ), null, 2 ); } /** * Execute module activation. * * @since 4.0 * * @return void */ public function execute_activate() { } /** * Execute module deactivation * * @return void */ public function execute_deactivate() { } /** * Execute module uninstall * * @return void */ public function execute_uninstall() { } /** * Execute module upgrade * * @return void */ public function execute_upgrade( $itsec_old_version ) { } } } new ITSEC_Pro_Setup();