芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/core/modules/global/notices.php
new ITSEC_Admin_Notice_Action_Link( $url, esc_html__( 'Get Free API Key', 'it-l10n-ithemes-security-pro' ), ITSEC_Admin_Notice_Action::S_PRIMARY ), ); } } class ITSEC_Admin_Notice_Licensed_Hostname_Prompt implements ITSEC_Admin_Notice { public function get_id() { return 'licensed-hostname-prompt'; } public function get_title() { return ''; } public function get_message() { return esc_html__( 'Solid Security couldn’t verify the license for this site. An active license is required to authenticate the Site Scanner.', 'it-l10n-ithemes-security-pro' ); } public function get_meta() { return []; } public function get_severity() { return self::S_WARN; } public function show_for_context( ITSEC_Admin_Notice_Context $context ) { return true; } public function get_actions() { return [ 'update' => new ITSEC_Admin_Notice_Action_Link( ithemes_updater_get_change_licensed_site_url( ITSEC_Core::get_settings_page_url() ), esc_html__( 'Update License', 'it-l10n-ithemes-security-pro' ), ITSEC_Admin_Notice_Action::S_PRIMARY, static function () { ITSEC_Modules::set_setting( 'global', 'licensed_hostname_prompt', false ); } ) ]; } } ITSEC_Lib_Admin_Notices::register( new ITSEC_Admin_Notice_Remind_Me( new ITSEC_Admin_Notice_Managers_Only( new class implements ITSEC_Admin_Notice { public function get_id() { return 'insecure-ip-detection'; } public function get_title() { return __( 'Enable Security Check', 'it-l10n-ithemes-security-pro' ); } public function get_message() { return __( 'Some firewall features are disabled because IP Detection has not been configured.', 'it-l10n-ithemes-security-pro' ) . ' ' . __( 'Enable Security Check to automatically configure IP detection for your server environment.', 'it-l10n-ithemes-security-pro' ) . ' ' . __( 'Alternatively, navigate to
Proxy Detection
to manually configure and test IP detection.', 'it-l10n-ithemes-security-pro' ); } public function get_meta() { return []; } public function get_severity() { return self::S_WARN; } public function show_for_context( ITSEC_Admin_Notice_Context $context ) { return 'automatic' === ITSEC_Modules::get_setting( 'global', 'proxy' ) && ITSEC_Core::is_onboarded(); } public function get_actions() { return [ 'enable' => new ITSEC_Admin_Notice_Action_Callback( ITSEC_Admin_Notice_Action::S_PRIMARY, __( 'Enable', 'it-l10n-ithemes-security-pro' ), function () { if ( ! ITSEC_Modules::is_active( 'security-check-pro' ) ) { ITSEC_Modules::activate( 'security-check-pro' ); } ITSEC_Modules::set_setting( 'global', 'proxy', 'security-check' ); } ), 'configure' => ITSEC_Admin_Notice_Action_Link::for_route( ITSEC_Core::get_settings_module_route( 'global' ) . '#proxy', __( 'Manually Configure', 'it-l10n-ithemes-security-pro' ) ), ]; } } ), WEEK_IN_SECONDS ) ); if ( ITSEC_Core::is_temp_disable_modules_set() ) { ITSEC_Lib_Admin_Notices::register( new ITSEC_Admin_Notice_Managers_Only( new ITSEC_Admin_Notice_Static( 'disable-modules', esc_html__( 'The ITSEC_DISABLE_MODULES define is set. All Solid Security protections are disabled. Please make the necessary settings changes and remove the define as quickly as possible.', 'it-l10n-ithemes-security-pro' ), '', ITSEC_Admin_Notice::S_WARN ) ) ); } if ( ! ITSEC_Modules::is_active( 'network-brute-force' ) || ! ITSEC_Modules::get_setting( 'network-brute-force', 'api_secret' ) ) { ITSEC_Lib_Admin_Notices::register( new ITSEC_Admin_Notice_Globally_Dismissible( new ITSEC_Admin_Notice_Managers_Only( new ITSEC_Admin_Notice_Network_Brute_Force_Promo() ) ) ); } if ( ITSEC_Core::is_licensed() && ITSEC_Modules::get_setting( 'global', 'licensed_hostname_prompt' ) && function_exists( 'ithemes_updater_get_change_licensed_site_url' ) ) { ITSEC_Lib_Admin_Notices::register( new ITSEC_Admin_Notice_Managers_Only( new ITSEC_Admin_Notice_Licensed_Hostname_Prompt() ) ); }