PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.7.0
Independent Analytics – WordPress Analytics Plugin v2.7.0
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / IAWP / Settings.php
independent-analytics / IAWP Last commit date
AJAX 2 years ago Admin_Page 2 years ago Custom_WordPress_Columns 2 years ago Data_Pruning 2 years ago Date_Range 2 years ago Email_Reports 2 years ago Filter_Lists 2 years ago Form_Submissions 2 years ago Interval 2 years ago Menu_Bar_Stats 2 years ago Migrations 2 years ago Models 2 years ago Public_API 2 years ago Rows 2 years ago Statistics 2 years ago Tables 2 years ago Utils 2 years ago Campaign_Builder.php 2 years ago Capability_Manager.php 2 years ago Chart.php 2 years ago Chart_Geo.php 2 years ago Cron_Manager.php 2 years ago Current_Traffic_Finder.php 2 years ago Dashboard_Options.php 2 years ago Dashboard_Widget.php 2 years ago Database.php 2 years ago Database_Manager.php 2 years ago Empty_Report_Option.php 2 years ago Env.php 2 years ago Filters.php 2 years ago Geo_Database_Background_Job.php 2 years ago Geo_Database_Manager.php 2 years ago Geoposition.php 2 years ago Icon_Directory.php 2 years ago Icon_Directory_Factory.php 2 years ago Illuminate_Builder.php 2 years ago Independent_Analytics.php 2 years ago Interrupt.php 2 years ago Known_Referrers.php 2 years ago Patch.php 2 years ago Plugin_Conflict_Detector.php 2 years ago Plugin_Group.php 2 years ago Plugin_Group_Option.php 2 years ago Query.php 2 years ago Query_Taps.php 2 years ago Quick_Stats.php 2 years ago REST_API.php 2 years ago Real_Time.php 2 years ago Report.php 2 years ago Report_Finder.php 2 years ago Report_Options_Parser.php 2 years ago Resource_Identifier.php 2 years ago Settings.php 2 years ago Sort_Configuration.php 2 years ago Track_Resource_Changes.php 2 years ago View.php 2 years ago View_Counter.php 2 years ago Visitors_Over_Time_Finder.php 2 years ago WP_Option_Cache_Bust.php 2 years ago WooCommerce_Order.php 2 years ago WooCommerce_Referrer_Meta_Box.php 2 years ago
Settings.php
351 lines
1 <?php
2
3 namespace IAWP;
4
5 use IAWP\Data_Pruning\Pruning_Scheduler;
6 use IAWP\Email_Reports\Interval_Factory;
7 use IAWP\Utils\Request;
8 use IAWP\Utils\String_Util;
9 /** @internal */
10 class Settings
11 {
12 public function __construct()
13 {
14 \add_action('admin_init', [$this, 'register_settings']);
15 \add_action('admin_init', [$this, 'register_view_counter_settings']);
16 \add_action('admin_init', [$this, 'register_blocked_ip_settings']);
17 \add_action('admin_init', [$this, 'register_block_by_role_settings']);
18 if (\IAWPSCOPED\iawp_is_pro()) {
19 \add_action('admin_init', [$this, 'register_email_report_settings']);
20 }
21 }
22 public function render_settings()
23 {
24 echo \IAWPSCOPED\iawp_blade()->run('settings.index');
25 if (\IAWPSCOPED\iawp_is_pro()) {
26 $defaults = $this->email_report_colors();
27 $saved = \IAWPSCOPED\iawp()->get_option('iawp_email_report_colors', $defaults);
28 // There were 6 colors and now 9, so there is a saved value but 7-9 don't exist
29 $input_defaults = $defaults;
30 for ($i = 0; $i < \count($saved); $i++) {
31 $input_defaults[$i] = $saved[$i];
32 }
33 $interval = Interval_Factory::from_option();
34 echo \IAWPSCOPED\iawp_blade()->run('settings.email-reports', ['is_scheduled' => \wp_next_scheduled('iawp_send_email_report'), 'scheduled_date' => \IAWPSCOPED\iawp()->email_reports->next_email_at_for_humans(), 'interval' => \IAWPSCOPED\iawp()->get_option('iawp_email_report_interval', 'monthly'), 'time' => \IAWPSCOPED\iawp()->get_option('iawp_email_report_time', 9), 'emails' => \IAWPSCOPED\iawp()->get_option('iawp_email_report_email_addresses', []), 'default_colors' => $defaults, 'input_default' => $input_defaults, 'timestamp' => $interval->next_interval_start()->getTimestamp()]);
35 }
36 $ips = \IAWPSCOPED\iawp()->get_option('iawp_blocked_ips', []);
37 echo \IAWPSCOPED\iawp_blade()->run('settings.block-ips', ['current_ip' => Request::ip(), 'ip_is_blocked' => Request::is_ip_address_blocked($ips), 'ips' => $ips]);
38 echo \IAWPSCOPED\iawp_blade()->run('settings.block-by-role', ['roles' => \wp_roles()->roles, 'blocked' => \IAWPSCOPED\iawp()->get_option('iawp_blocked_roles', [])]);
39 echo \IAWPSCOPED\iawp_blade()->run('settings.capabilities', ['editable_roles' => $this->get_editable_roles(), 'capabilities' => \IAWP\Capability_Manager::all_capabilities()]);
40 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter');
41 echo \IAWPSCOPED\iawp_blade()->run('settings.export-reports', ['report_finder' => new \IAWP\Report_Finder()]);
42 echo \IAWPSCOPED\iawp_blade()->run('settings.export-data');
43 echo \IAWPSCOPED\iawp_blade()->run('settings.pruner', ['pruner' => new Pruning_Scheduler()]);
44 echo \IAWPSCOPED\iawp_blade()->run('settings.delete', ['site_name' => \get_bloginfo('name'), 'site_url' => \site_url()]);
45 }
46 public function register_settings()
47 {
48 \add_settings_section('iawp-settings-section', \esc_html__('Basic Settings', 'independent-analytics'), function () {
49 }, 'independent-analytics-settings');
50 $args = ['type' => 'boolean', 'default' => \false, 'sanitize_callback' => 'rest_sanitize_boolean'];
51 \register_setting('iawp_settings', 'iawp_dark_mode', $args);
52 \add_settings_field('iawp_dark_mode', \esc_html__('Dark mode', 'independent-analytics'), [$this, 'dark_mode_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'dark-mode']);
53 \register_setting('iawp_settings', 'iawp_track_authenticated_users', $args);
54 \add_settings_field('iawp_track_authenticated_users', \esc_html__('Track logged in users', 'independent-analytics'), [$this, 'track_authenticated_users_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'logged-in']);
55 \register_setting('iawp_settings', 'iawp_disable_admin_toolbar_analytics', $args);
56 \add_settings_field('iawp_disable_admin_toolbar_analytics', \esc_html__('Admin toolbar stats', 'independent-analytics'), [$this, 'disable_admin_toolbar_analytics_callback'], 'independent-analytics-settings', 'iawp-settings-section');
57 \register_setting('iawp_settings', 'iawp_disable_widget', $args);
58 \add_settings_field('iawp_disable_widget', \esc_html__('Dashboard widget', 'independent-analytics'), [$this, 'disable_widget_callback'], 'independent-analytics-settings', 'iawp-settings-section');
59 \register_setting('iawp_settings', 'iawp_disable_views_column', $args);
60 \add_settings_field('iawp_disable_views_column', \esc_html__('Views column', 'independent-analytics'), [$this, 'disable_views_column_callback'], 'independent-analytics-settings', 'iawp-settings-section');
61 $args = ['type' => 'integer', 'default' => 0, 'sanitize_callback' => 'absint'];
62 \register_setting('iawp_settings', 'iawp_dow', $args);
63 \add_settings_field('iawp_dow', \esc_html__('First day of week', 'independent-analytics'), [$this, 'starting_dow_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'dow']);
64 $args = ['type' => 'boolean', 'default' => \false, 'sanitize_callback' => 'rest_sanitize_boolean'];
65 \register_setting('iawp_settings', 'iawp_refresh_salt', $args);
66 \add_settings_field('iawp_refresh_salt', \esc_html__('Salt refresh rate', 'independent-analytics'), [$this, 'refresh_salt_callback'], 'independent-analytics-settings', 'iawp-settings-section', ['class' => 'salt']);
67 }
68 public function dark_mode_callback()
69 {
70 echo \IAWPSCOPED\iawp_blade()->run('settings.dark-mode', ['dark_mode' => \IAWPSCOPED\iawp()->get_option('iawp_dark_mode', \false)]);
71 }
72 public function track_authenticated_users_callback()
73 {
74 echo \IAWPSCOPED\iawp_blade()->run('settings.track-authenticated-users', ['track_authenticated_users' => \IAWPSCOPED\iawp()->get_option('iawp_track_authenticated_users', \false)]);
75 }
76 public function disable_admin_toolbar_analytics_callback()
77 {
78 echo \IAWPSCOPED\iawp_blade()->run('settings.disable-admin-toolbar-analytics', ['value' => \IAWPSCOPED\iawp()->get_option('iawp_disable_admin_toolbar_analytics', \false)]);
79 }
80 public function disable_widget_callback()
81 {
82 echo \IAWPSCOPED\iawp_blade()->run('settings.disable-widget', ['value' => \IAWPSCOPED\iawp()->get_option('iawp_disable_widget', \false)]);
83 }
84 public function disable_views_column_callback() : void
85 {
86 echo \IAWPSCOPED\iawp_blade()->run('settings.disable-views-column', ['value' => \IAWPSCOPED\iawp()->get_option('iawp_disable_views_column', \false)]);
87 }
88 public function starting_dow_callback()
89 {
90 echo \IAWPSCOPED\iawp_blade()->run('settings.first-day-of-week', ['day_of_week' => \IAWPSCOPED\iawp()->get_option('iawp_dow', 0), 'days' => [0 => \esc_html__('Sunday', 'independent-analytics'), 1 => \esc_html__('Monday', 'independent-analytics'), 2 => \esc_html__('Tuesday', 'independent-analytics'), 3 => \esc_html__('Wednesday', 'independent-analytics'), 4 => \esc_html__('Thursday', 'independent-analytics'), 5 => \esc_html__('Friday', 'independent-analytics'), 6 => \esc_html__('Saturday', 'independent-analytics')]]);
91 }
92 public function refresh_salt_callback()
93 {
94 echo \IAWPSCOPED\iawp_blade()->run('settings.refresh-salt', ['refresh_salt' => \IAWPSCOPED\iawp()->get_option('iawp_refresh_salt', \false)]);
95 }
96 public function register_view_counter_settings()
97 {
98 \add_settings_section('iawp-view-counter-settings-section', \esc_html__('Public View Counter', 'independent-analytics'), function () {
99 }, 'independent-analytics-view-counter-settings');
100 $args = ['type' => 'boolean', 'default' => \false, 'sanitize_callback' => 'rest_sanitize_boolean'];
101 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_enable', $args);
102 \add_settings_field('iawp_view_counter_enable', \esc_html__('Enable the view counter', 'independent-analytics'), [$this, 'view_counter_enable_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'enable']);
103 $args = ['type' => 'array', 'default' => [], 'sanitize_callback' => [$this, 'sanitize_view_counter_post_types']];
104 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_post_types', $args);
105 \add_settings_field('iawp_view_counter_post_types', \esc_html__('Display on these post types', 'independent-analytics'), [$this, 'view_counter_post_types_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'post-types']);
106 // Position
107 $args = ['type' => 'string', 'default' => 'after', 'sanitize_callback' => [$this, 'sanitize_view_counter_position']];
108 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_position', $args);
109 \add_settings_field('iawp_view_counter_position', \esc_html__('Show it in this location', 'independent-analytics'), [$this, 'view_counter_position_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'position']);
110 // Views to count
111 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_views_to_count', ['type' => 'string', 'default' => 'total', 'sanitize_callback' => [$this, 'sanitize_view_counter_views_to_count']]);
112 \add_settings_field('iawp_view_counter_views_to_count', \esc_html__('Date range to count views', 'independent-analytics'), [$this, 'view_counter_views_to_count_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'views-to-count']);
113 // Exclude
114 $args = ['type' => 'string', 'default' => '', 'sanitize_callback' => [$this, 'sanitize_view_counter_exclude']];
115 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_exclude', $args);
116 \add_settings_field('iawp_view_counter_exclude', \esc_html__('Exclude these pages', 'independent-analytics'), [$this, 'view_counter_exclude_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'exclude']);
117 // Label
118 $default = \function_exists('IAWPSCOPED\\pll__') ? pll__('Views:', 'independent-analytics') : \__('Views:', 'independent-analytics');
119 $args = ['type' => 'string', 'default' => $default, 'sanitize_callback' => 'sanitize_text_field'];
120 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_label', $args);
121 \add_settings_field('iawp_view_counter_label', \esc_html__('Edit the label', 'independent-analytics'), [$this, 'view_counter_label_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'counter-label']);
122 // Hide Label
123 $args = ['type' => 'boolean', 'default' => \true, 'sanitize_callback' => 'rest_sanitize_boolean'];
124 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_label_show', $args);
125 \add_settings_field('iawp_view_counter_label_show', \esc_html__('Display the label', 'independent-analytics'), [$this, 'view_counter_label_show_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'hide-label']);
126 // Icon
127 $args = ['type' => 'boolean', 'default' => \true, 'sanitize_callback' => 'rest_sanitize_boolean'];
128 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_icon', $args);
129 \add_settings_field('iawp_view_counter_icon', \esc_html__('Display the icon', 'independent-analytics'), [$this, 'view_counter_icon_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'icon']);
130 // Private
131 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_private', ['type' => 'boolean', 'default' => \false, 'sanitize_callback' => 'rest_sanitize_boolean']);
132 \add_settings_field('iawp_view_counter_private', \esc_html__('Make the view counter private?', 'independent-analytics'), [$this, 'view_counter_private_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'private']);
133 // Allow manual adjustment
134 \register_setting('iawp_view_counter_settings', 'iawp_view_counter_manual_adjustment', ['type' => 'boolean', 'default' => \false, 'sanitize_callback' => 'rest_sanitize_boolean']);
135 \add_settings_field('iawp_view_counter_manual_adjustment', \esc_html__('Allow manual adjustment?', 'independent-analytics'), [$this, 'view_counter_manual_adjustment_callback'], 'independent-analytics-view-counter-settings', 'iawp-view-counter-settings-section', ['class' => 'manual-adjustment']);
136 }
137 public function view_counter_enable_callback()
138 {
139 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.enable', ['enable' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_enable', \false)]);
140 }
141 public function view_counter_post_types_callback()
142 {
143 $site_post_types = \get_post_types(['public' => \true], 'objects');
144 $counter = 0;
145 foreach ($site_post_types as $post_type) {
146 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.post-types', ['counter' => $counter, 'post_type' => $post_type, 'saved' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_post_types', [])]);
147 $counter++;
148 }
149 ?>
150 <p class="description"><?php
151 \esc_html_e('Uncheck all boxes to only show view count manually. See shortcode documentation below for details.', 'independent-analytics');
152 ?></p>
153 <?php
154 }
155 public function view_counter_position_callback()
156 {
157 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.position', ['position' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_position', 'after')]);
158 }
159 public function view_counter_views_to_count_callback()
160 {
161 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.views-to-count', ['value' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_views_to_count', 'total')]);
162 }
163 public function view_counter_exclude_callback()
164 {
165 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.exclude', ['exclude' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_exclude', '')]);
166 }
167 public function view_counter_label_callback()
168 {
169 $default = \function_exists('IAWPSCOPED\\pll__') ? pll__('Views:', 'independent-analytics') : \__('Views:', 'independent-analytics');
170 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.label', ['label' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_label', $default)]);
171 }
172 public function view_counter_label_show_callback()
173 {
174 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.label-show', ['show' => \get_option('iawp_view_counter_label_show', \true)]);
175 }
176 public function view_counter_icon_callback()
177 {
178 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.icon', ['icon' => \get_option('iawp_view_counter_icon', \true)]);
179 }
180 public function view_counter_private_callback()
181 {
182 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.private', ['private' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_private', \false)]);
183 }
184 public function view_counter_manual_adjustment_callback()
185 {
186 echo \IAWPSCOPED\iawp_blade()->run('settings.view-counter.manual-adjustment', ['value' => \IAWPSCOPED\iawp()->get_option('iawp_view_counter_manual_adjustment', \false)]);
187 }
188 public function register_blocked_ip_settings()
189 {
190 \add_settings_section('iawp-blocked-ips-settings-section', \esc_html__('Block IP Addresses', 'independent-analytics'), function () {
191 }, 'iawp-blocked-ips-settings');
192 $args = ['type' => 'array', 'default' => [], 'sanitize_callback' => [$this, 'sanitize_blocked_ips']];
193 \register_setting('iawp_blocked_ip_settings', 'iawp_blocked_ips', $args);
194 }
195 public function register_email_report_settings()
196 {
197 \add_settings_section('iawp-email-report-settings-section', \esc_html__('Scheduled Email Reports', 'independent-analytics'), function () {
198 }, 'iawp-email-report-settings');
199 \register_setting('iawp_email_report_settings', 'iawp_email_report_interval', ['type' => 'string', 'default' => 'monthly', 'sanitize_callback' => [$this, 'sanitize_email_report_interval']]);
200 \register_setting('iawp_email_report_settings', 'iawp_email_report_time', ['type' => 'number', 'default' => 9, 'sanitize_callback' => [$this, 'sanitize_email_report_time']]);
201 \register_setting('iawp_email_report_settings', 'iawp_email_report_email_addresses', ['type' => 'array', 'default' => [], 'sanitize_callback' => [$this, 'sanitize_email_addresses']]);
202 \register_setting('iawp_email_report_settings', 'iawp_email_report_colors', ['type' => 'array', 'default' => $this->email_report_colors(), 'sanitize_callback' => [$this, 'sanitize_email_report_colors']]);
203 }
204 public function register_block_by_role_settings()
205 {
206 \add_settings_section('iawp-block-by-role-settings-section', \esc_html__('Block by User Role', 'independent-analytics'), function () {
207 }, 'iawp-block-by-role-settings');
208 $args = ['type' => 'array', 'default' => [], 'sanitize_callback' => [$this, 'sanitize_blocked_roles']];
209 \register_setting('iawp_block_by_role_settings', 'iawp_blocked_roles', $args);
210 }
211 public function sanitize_view_counter_post_types($user_input)
212 {
213 if (\is_null($user_input)) {
214 return [];
215 }
216 $site_post_types = \get_post_types(['public' => \true]);
217 $to_save = [];
218 foreach ($user_input as $post_type) {
219 if (\in_array($post_type, $site_post_types)) {
220 $to_save[] = $post_type;
221 }
222 }
223 return $to_save;
224 }
225 public function sanitize_view_counter_position($user_input)
226 {
227 if (\in_array($user_input, ['before', 'after', 'both'])) {
228 return $user_input;
229 } else {
230 return 'after';
231 }
232 }
233 public function sanitize_view_counter_views_to_count($user_input)
234 {
235 if (\in_array($user_input, ['total', 'today', 'yesterday', 'this_week', 'last_week', 'last_seven', 'last_thirty', 'last_sixty', 'last_ninety', 'this_month', 'last_month', 'last_three_months', 'last_six_months', 'last_twelve_months', 'this_year', 'last_year'])) {
236 return $user_input;
237 } else {
238 return 'total';
239 }
240 }
241 public function sanitize_view_counter_exclude($user_input)
242 {
243 $user_input = \explode(',', $user_input);
244 $to_save = [];
245 foreach ($user_input as $id) {
246 $save = \absint($id);
247 if ($save != 0) {
248 $to_save[] = $save;
249 }
250 }
251 $to_save = \implode(',', $to_save);
252 return $to_save;
253 }
254 public function sanitize_blocked_ips($user_input)
255 {
256 $to_save = [];
257 foreach ($user_input as $ip) {
258 // Limit to two wildcards
259 if (\substr_count($ip, '*') > 2) {
260 continue;
261 }
262 // If it's safe with wildcard replacements, it's safe with them
263 $safe_replacement = String_Util::str_contains($ip, '.') ? '172' : '2601';
264 $wildcards_replaced = \str_replace('*', $safe_replacement, $ip);
265 if (\filter_var($wildcards_replaced, \FILTER_VALIDATE_IP)) {
266 $to_save[] = $ip;
267 }
268 }
269 return $to_save;
270 }
271 public function sanitize_email_addresses($emails)
272 {
273 $to_save = [];
274 foreach ($emails as $email) {
275 $cleaned = \sanitize_email($email);
276 if (\is_email($cleaned)) {
277 $to_save[] = $cleaned;
278 }
279 }
280 return $to_save;
281 }
282 public function sanitize_email_report_interval($input)
283 {
284 if (\in_array($input, ['monthly', 'weekly', 'daily'])) {
285 return $input;
286 } else {
287 return 'monthly';
288 }
289 }
290 public function sanitize_email_report_time($user_time)
291 {
292 $accepted_times = [];
293 for ($i = 0; $i < 24; $i++) {
294 $accepted_times[] = $i;
295 }
296 if (\in_array($user_time, $accepted_times)) {
297 return $user_time;
298 } else {
299 return 9;
300 }
301 }
302 public function sanitize_blocked_roles($blocked_roles)
303 {
304 $to_save = [];
305 $user_roles = \array_keys(\wp_roles()->roles);
306 foreach ($blocked_roles as $blocked) {
307 if (\in_array($blocked, $user_roles)) {
308 $to_save[] = $blocked;
309 }
310 }
311 return $to_save;
312 }
313 public function sanitize_email_report_colors($colors)
314 {
315 $to_save = [];
316 // No idea why WP sometimes returns an array, so this is for my sanity
317 if (\is_string($colors)) {
318 $colors = \explode(',', $colors);
319 }
320 foreach ($colors as $color) {
321 $to_save[] = \sanitize_hex_color($color);
322 }
323 return $to_save;
324 }
325 /**
326 * @return array
327 */
328 private function get_editable_roles() : array
329 {
330 $editable_roles = [];
331 $wp_roles = \wp_roles()->roles;
332 \array_walk($wp_roles, function ($role, $role_key) use(&$editable_roles) {
333 if ($role_key === 'administrator') {
334 return;
335 }
336 $capability = null;
337 foreach (\IAWP\Capability_Manager::all_capabilities() as $key => $name) {
338 if (\array_key_exists($key, $role['capabilities'])) {
339 $capability = $key;
340 }
341 }
342 $editable_roles[] = ['key' => $role_key, 'name' => $role['name'], 'capability' => $capability];
343 });
344 return $editable_roles;
345 }
346 private function email_report_colors()
347 {
348 return ['#5123a0', '#fafafa', '#3a1e6b', '#fafafa', '#5123a0', '#a985e6', '#ece9f2', '#f7f5fa', '#ece9f2', '#dedae6'];
349 }
350 }
351