1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
<?php
if ( ! class_exists( 'ITSEC_Hide_Backend_Setup' ) ) {
class ITSEC_Hide_Backend_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() {
delete_site_transient( 'ITSEC_SHOW_HIDE_BACKEND_TOOLTIP' ); delete_site_option( 'itsec_hide_backend_new_slug' );
}
/** * Execute module uninstall * * @return void */ public function execute_uninstall() {
$this->execute_deactivate();
delete_site_option( 'itsec_hide_backend' );
}
/** * Execute module upgrade * * @return void */ public function execute_upgrade( $itsec_old_version ) {
if ( $itsec_old_version < 4000 ) {
global $itsec_bwps_options;
$current_options = get_site_option( 'itsec_hide_backend' );
if ( false !== $current_options ) {
$current_options['enabled'] = isset( $itsec_bwps_options['hb_enabled'] ) && $itsec_bwps_options['hb_enabled'] == 1 ? true : false; $current_options['register'] = isset( $itsec_bwps_options['hb_register'] ) ? sanitize_text_field( $itsec_bwps_options['hb_register'] ) : 'wp-signup.php';
if ( $current_options['enabled'] === true ) {
$current_options['show-tooltip'] = true; set_site_transient( 'ITSEC_SHOW_HIDE_BACKEND_TOOLTIP', true, 600 );
} else {
$current_options['show-tooltip'] = false;
}
$forbidden_slugs = array( 'admin', 'login', 'wp-login.php', 'dashboard', 'wp-admin', '' );
if ( isset( $itsec_bwps_options['hb_login'] ) && ! in_array( trim( $itsec_bwps_options['hb_login'] ), $forbidden_slugs ) ) {
$current_options['slug'] = $itsec_bwps_options['hb_login']; set_site_transient( 'ITSEC_SHOW_HIDE_BACKEND_TOOLTIP', true, 600 );
} else {
$current_options['enabled'] = false; set_site_transient( 'ITSEC_SHOW_HIDE_BACKEND_TOOLTIP', true, 600 );
}
update_site_option( 'itsec_hide_backend', $current_options ); ITSEC_Response::regenerate_server_config(); } }
if ( $itsec_old_version < 4027 ) {
$current_options = get_site_option( 'itsec_hide_backend' );
if ( isset( $current_options['enabled'] ) && $current_options['enabled'] === true ) {
add_action( 'admin_init', array( $this, 'flush_rewrite_rules' ) );
ITSEC_Response::regenerate_server_config();
}
}
if ( $itsec_old_version < 4041 ) { $current_options = get_site_option( 'itsec_hide_backend' );
// If there are no current options, go with the new defaults by not saving anything if ( is_array( $current_options ) ) { // remove 'show-tooltip' which is old and not used in the new module unset( $current_options['show-tooltip'] ); ITSEC_Modules::set_settings( 'hide-backend', $current_options ); } }
if ( $itsec_old_version < 4070 ) { delete_site_option( 'itsec_hide_backend' ); }
if ( $itsec_old_version < 4072 ) { ITSEC_Response::regenerate_server_config(); } }
/** * Flush rewrite rules. * * @since 4.0.6 * * @return void */ public function flush_rewrite_rules() { $config_file = ITSEC_Lib::get_htaccess();
//Make sure we can write to the file $perms = substr( sprintf( '%o', @fileperms( $config_file ) ), - 4 ); @chmod( $config_file, 0664 );
flush_rewrite_rules();
@chmod( $config_file, $perms ); }
}
}
new ITSEC_Hide_Backend_Setup();
|