Eggplant 301 Redirects - Version 2.72

Version Description

  • 2021/11/11
  • security fixes
  • added "Reset Redirect Hits" tool
Download this release

Release Info

Developer WebFactory
Plugin Icon 128x128 Eggplant 301 Redirects
Version 2.72
Comparing to
See all releases

Code changes from version 2.70 to 2.72

eps-301-redirects.php CHANGED
@@ -2,16 +2,16 @@
2
  /*
3
  Plugin Name: 301 Redirects
4
  Description: Easily create and manage redirect rules, and view 404 error log.
5
- Version: 2.70
6
  Author: WebFactory Ltd
7
  Author URI: https://www.webfactoryltd.com/
8
  Plugin URI: https://wp301redirects.com/
9
  Text Domain: eps-301-redirects
10
  Requires at least: 3.6
11
- Tested up to: 5.7
12
  Requires PHP: 5.2
13
 
14
- Copyright 2015 - 2021 WebFactory Ltd (email: 301redirects@webfactoryltd.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -52,7 +52,7 @@ if (!defined('WF301_PLUGIN_FILE')) {
52
  register_activation_hook(__FILE__, array('EPS_Redirects_Plugin', '_activation'));
53
  register_deactivation_hook(__FILE__, array('EPS_Redirects_Plugin', '_deactivation'));
54
  add_action('plugins_loaded', array('EPS_Redirects_Plugin', 'protect_from_translation_plugins'), -9999);
55
-
56
  class EPS_Redirects
57
  {
58
  /**
@@ -68,7 +68,7 @@ if (!defined('WF301_PLUGIN_FILE')) {
68
 
69
  if (is_admin()) {
70
 
71
- if (isset($_GET['page']) && $_GET['page'] == $EPS_Redirects_Plugin->config('page_slug')) {
72
  add_action('admin_init', array($this, 'clear_cache'));
73
  }
74
 
@@ -91,9 +91,12 @@ if (!defined('WF301_PLUGIN_FILE')) {
91
 
92
  function plugin_action_links($links)
93
  {
 
 
94
  $settings_link = '<a href="' . admin_url('options-general.php?page=eps_redirects') . '" title="' . __('Manage Redirects', 'eps-301-redirects') . '">' . __('Manage Redirects', 'eps-301-redirects') . '</a>';
95
 
96
  array_unshift($links, $settings_link);
 
97
 
98
  return $links;
99
  } // plugin_action_links
@@ -104,7 +107,7 @@ if (!defined('WF301_PLUGIN_FILE')) {
104
  check_ajax_referer('eps_dismiss_pointer');
105
 
106
  $pointers = get_option('eps_pointers');
107
- $pointer = trim($_POST['pointer_name']);
108
 
109
  if (empty($pointers) || empty($pointers[$pointer])) {
110
  wp_send_json_error();
@@ -123,28 +126,329 @@ if (!defined('WF301_PLUGIN_FILE')) {
123
  }
124
  } // add_widget
125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  // render widget
128
  function widget_content() {
129
  require EPS_REDIRECT_PATH . '/libs/UserAgentParser.php';
130
 
131
  $log = get_option('eps_redirects_404_log', array());
 
132
  if (!sizeof($log)) {
133
- echo '<p>You currently don\'t have any data in the 404 error log. That means that you either just installed the plugin, or that you never had a 404 error happen which is <b>awesome 🚀</b>!</p>';
134
- echo '<p>Don\'t like seeing an empty error log? Or just want to see see if the log works? Open any <a target="_blank" title="Open an nonexistent URL to see if the 404 error log works" href="' . home_url('/nonexistent/url/') . '">nonexistent URL</a> and then reload this page.</p>';
135
  } else {
136
- echo '<style>#wp301_404_errors .inside { padding: 0; margin: 0; }';
137
- echo '#wp301_404_errors table td { max-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }';
138
- echo '#wp301_404_errors table th { font-weight: 500; }';
139
- echo '#wp301_404_errors table { border-left: none; border-right: none; border-top: none; }';
140
- echo '#wp301_404_errors p { padding: 0 12px 12px 12px; }';
141
- echo '#wp301_404_errors .dashicons { opacity: 0.75; font-size: 17px; line-height: 17px; width: 17px; height: 17px;vertical-align: bottom; }</style>';
142
- echo '<table class="striped widefat">';
143
- echo '<tr>';
144
- echo '<th>Date &amp;<br>Time <span class="dashicons dashicons-arrow-down"></span></th>';
145
- echo '<th>Target URL</th>';
146
- echo '<th>User Device</th>';
147
- echo '</tr>';
148
 
149
  $i = 1;
150
  foreach ($log as $l) {
@@ -153,20 +457,21 @@ if (!defined('WF301_PLUGIN_FILE')) {
153
  if (empty($agent)) {
154
  $agent = '<i>unknown</i>';
155
  }
156
- echo '<tr>';
157
- echo '<td nowrap><abbr title="' . date(get_option('date_format'), $l['timestamp']) . ' @ ' . date(get_option('time_format'), $l['timestamp']) . '">' . human_time_diff(current_time('timestamp'), $l['timestamp']) . ' ago</abbr></td>';
158
- echo '<td><a title="Open target URL in a new tab" target="_blank" href="' . $l['url'] . '">' . $l['url'] . '</a> <span class="dashicons dashicons-external"></span></td>';
159
- echo '<td>' . $agent . '</td>';
160
- echo '</tr>';
161
  $i++;
162
  if ($i >= 6) {
163
  break;
164
  }
165
  } // foreach
166
- echo '</table>';
167
 
168
- echo '<p>View the entire <a href="' . admin_url('options-general.php?page=eps_redirects&tab=404s') . '">404 error log</a> in the 301 Redirects plugin or <a href="' . admin_url('options-general.php?page=eps_redirects') . '">create new redirect rules</a> to fix 404 errors.</p>';
169
  }
 
170
  } // widget_content
171
 
172
 
@@ -300,8 +605,8 @@ if (!defined('WF301_PLUGIN_FILE')) {
300
  if (empty($array['url_to'][$i]) || empty($array['url_from'][$i])) continue;
301
  $new_redirects[] = array(
302
  'id' => isset($array['id'][$i]) ? $array['id'][$i] : null,
303
- 'url_from' => esc_attr($array['url_from'][$i]),
304
- 'url_to' => esc_attr($array['url_to'][$i]),
305
  'type' => (is_numeric($array['url_to'][$i])) ? 'post' : 'url',
306
  'status' => isset($array['status'][$i]) ? $array['status'][$i] : '301'
307
  );
@@ -331,10 +636,10 @@ if (!defined('WF301_PLUGIN_FILE')) {
331
 
332
  $update = array(
333
  'id' => ($_POST['id']) ? intval($_POST['id']) : false,
334
- 'url_from' => esc_attr($_POST['url_from']), // remove the $root from the url if supplied, and a leading /
335
- 'url_to' => esc_attr($_POST['url_to']),
336
  'type' => (is_numeric($_POST['url_to']) ? 'post' : 'url'),
337
- 'status' => $_POST['status']
338
  );
339
 
340
  $ids = self::_save_redirects(array($update));
@@ -458,8 +763,8 @@ if (!defined('WF301_PLUGIN_FILE')) {
458
  {
459
  global $wpdb;
460
  $table_name = $wpdb->prefix . "redirects";
461
- $orderby = (isset($_GET['orderby'])) ? esc_sql($_GET['orderby']) : 'id';
462
- $order = (isset($_GET['order'])) ? esc_sql($_GET['order']) : 'desc';
463
  $orderby = (in_array(strtolower($orderby), array('id', 'url_from', 'url_to', 'count'))) ? $orderby : 'id';
464
  $order = (in_array(strtolower($order), array('asc', 'desc'))) ? $order : 'desc';
465
 
@@ -564,7 +869,7 @@ if (!defined('WF301_PLUGIN_FILE')) {
564
  global $wpdb;
565
  $table_name = $wpdb->prefix . "redirects";
566
  $results = $wpdb->delete($table_name, array('ID' => intval($_POST['id'])));
567
- echo json_encode(array('id' => $_POST['id']));
568
  exit();
569
  }
570
  private static function _delete($id)
@@ -590,7 +895,7 @@ if (!defined('WF301_PLUGIN_FILE')) {
590
  {
591
  ob_start();
592
  ?>
593
- <tr class="id-<?php echo ($redirect_id) ? $redirect_id : 'new'; ?>">
594
  <?php include(EPS_REDIRECT_PATH . 'templates/template.redirect-entry-edit.php'); ?>
595
  </tr>
596
  <?php
@@ -635,7 +940,7 @@ public static function ajax_get_entry()
635
  wp_die('You are not allowed to run this action.');
636
  }
637
 
638
- echo self::get_entry();
639
  exit();
640
  }
641
 
2
  /*
3
  Plugin Name: 301 Redirects
4
  Description: Easily create and manage redirect rules, and view 404 error log.
5
+ Version: 2.72
6
  Author: WebFactory Ltd
7
  Author URI: https://www.webfactoryltd.com/
8
  Plugin URI: https://wp301redirects.com/
9
  Text Domain: eps-301-redirects
10
  Requires at least: 3.6
11
+ Tested up to: 6.0
12
  Requires PHP: 5.2
13
 
14
+ Copyright 2015 - 2022 WebFactory Ltd (email: 301redirects@webfactoryltd.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
52
  register_activation_hook(__FILE__, array('EPS_Redirects_Plugin', '_activation'));
53
  register_deactivation_hook(__FILE__, array('EPS_Redirects_Plugin', '_deactivation'));
54
  add_action('plugins_loaded', array('EPS_Redirects_Plugin', 'protect_from_translation_plugins'), -9999);
55
+
56
  class EPS_Redirects
57
  {
58
  /**
68
 
69
  if (is_admin()) {
70
 
71
+ if (isset($_GET['page']) && sanitize_text_field($_GET['page']) == $EPS_Redirects_Plugin->config('page_slug')) {
72
  add_action('admin_init', array($this, 'clear_cache'));
73
  }
74
 
91
 
92
  function plugin_action_links($links)
93
  {
94
+ $pro_link = '<a href="' . admin_url('options-general.php?page=eps_redirects#open-pro-dialog') . '" title="' . __('Get PRO', 'eps-301-redirects') . '"><b>' . __('Get PRO', 'eps-301-redirects') . '</b></a>';
95
+
96
  $settings_link = '<a href="' . admin_url('options-general.php?page=eps_redirects') . '" title="' . __('Manage Redirects', 'eps-301-redirects') . '">' . __('Manage Redirects', 'eps-301-redirects') . '</a>';
97
 
98
  array_unshift($links, $settings_link);
99
+ $links[] = $pro_link;
100
 
101
  return $links;
102
  } // plugin_action_links
107
  check_ajax_referer('eps_dismiss_pointer');
108
 
109
  $pointers = get_option('eps_pointers');
110
+ $pointer = trim(sanitize_text_field($_POST['pointer_name']));
111
 
112
  if (empty($pointers) || empty($pointers[$pointer])) {
113
  wp_send_json_error();
126
  }
127
  } // add_widget
128
 
129
+ static function wp_kses_wf($html)
130
+ {
131
+ add_filter('safe_style_css', function ($styles) {
132
+ $styles_wf = array(
133
+ 'text-align',
134
+ 'margin',
135
+ 'color',
136
+ 'float',
137
+ 'border',
138
+ 'background',
139
+ 'background-color',
140
+ 'border-bottom',
141
+ 'border-bottom-color',
142
+ 'border-bottom-style',
143
+ 'border-bottom-width',
144
+ 'border-collapse',
145
+ 'border-color',
146
+ 'border-left',
147
+ 'border-left-color',
148
+ 'border-left-style',
149
+ 'border-left-width',
150
+ 'border-right',
151
+ 'border-right-color',
152
+ 'border-right-style',
153
+ 'border-right-width',
154
+ 'border-spacing',
155
+ 'border-style',
156
+ 'border-top',
157
+ 'border-top-color',
158
+ 'border-top-style',
159
+ 'border-top-width',
160
+ 'border-width',
161
+ 'caption-side',
162
+ 'clear',
163
+ 'cursor',
164
+ 'direction',
165
+ 'font',
166
+ 'font-family',
167
+ 'font-size',
168
+ 'font-style',
169
+ 'font-variant',
170
+ 'font-weight',
171
+ 'height',
172
+ 'letter-spacing',
173
+ 'line-height',
174
+ 'margin-bottom',
175
+ 'margin-left',
176
+ 'margin-right',
177
+ 'margin-top',
178
+ 'overflow',
179
+ 'padding',
180
+ 'padding-bottom',
181
+ 'padding-left',
182
+ 'padding-right',
183
+ 'padding-top',
184
+ 'text-decoration',
185
+ 'text-indent',
186
+ 'vertical-align',
187
+ 'width',
188
+ 'display',
189
+ );
190
+
191
+ foreach ($styles_wf as $style_wf) {
192
+ $styles[] = $style_wf;
193
+ }
194
+ return $styles;
195
+ });
196
+
197
+ $allowed_tags = wp_kses_allowed_html('post');
198
+ $allowed_tags['input'] = array(
199
+ 'type' => true,
200
+ 'style' => true,
201
+ 'class' => true,
202
+ 'id' => true,
203
+ 'checked' => true,
204
+ 'disabled' => true,
205
+ 'name' => true,
206
+ 'size' => true,
207
+ 'placeholder' => true,
208
+ 'value' => true,
209
+ 'data-*' => true,
210
+ 'size' => true,
211
+ 'disabled' => true
212
+ );
213
+
214
+ $allowed_tags['textarea'] = array(
215
+ 'type' => true,
216
+ 'style' => true,
217
+ 'class' => true,
218
+ 'id' => true,
219
+ 'checked' => true,
220
+ 'disabled' => true,
221
+ 'name' => true,
222
+ 'size' => true,
223
+ 'placeholder' => true,
224
+ 'value' => true,
225
+ 'data-*' => true,
226
+ 'cols' => true,
227
+ 'rows' => true,
228
+ 'disabled' => true
229
+ );
230
+
231
+ $allowed_tags['select'] = array(
232
+ 'type' => true,
233
+ 'style' => true,
234
+ 'class' => true,
235
+ 'id' => true,
236
+ 'checked' => true,
237
+ 'disabled' => true,
238
+ 'name' => true,
239
+ 'size' => true,
240
+ 'placeholder' => true,
241
+ 'value' => true,
242
+ 'data-*' => true,
243
+ 'multiple' => true,
244
+ 'disabled' => true
245
+ );
246
+
247
+ $allowed_tags['option'] = array(
248
+ 'type' => true,
249
+ 'style' => true,
250
+ 'class' => true,
251
+ 'id' => true,
252
+ 'checked' => true,
253
+ 'disabled' => true,
254
+ 'name' => true,
255
+ 'size' => true,
256
+ 'placeholder' => true,
257
+ 'value' => true,
258
+ 'selected' => true,
259
+ 'data-*' => true
260
+ );
261
+ $allowed_tags['optgroup'] = array(
262
+ 'type' => true,
263
+ 'style' => true,
264
+ 'class' => true,
265
+ 'id' => true,
266
+ 'checked' => true,
267
+ 'disabled' => true,
268
+ 'name' => true,
269
+ 'size' => true,
270
+ 'placeholder' => true,
271
+ 'value' => true,
272
+ 'selected' => true,
273
+ 'data-*' => true,
274
+ 'label' => true
275
+ );
276
+
277
+ $allowed_tags['a'] = array(
278
+ 'href' => true,
279
+ 'data-*' => true,
280
+ 'class' => true,
281
+ 'style' => true,
282
+ 'id' => true,
283
+ 'target' => true,
284
+ 'data-*' => true,
285
+ 'role' => true,
286
+ 'aria-controls' => true,
287
+ 'aria-selected' => true,
288
+ 'disabled' => true
289
+ );
290
+
291
+ $allowed_tags['div'] = array(
292
+ 'style' => true,
293
+ 'class' => true,
294
+ 'id' => true,
295
+ 'data-*' => true,
296
+ 'role' => true,
297
+ 'aria-labelledby' => true,
298
+ 'value' => true,
299
+ 'aria-modal' => true,
300
+ 'tabindex' => true
301
+ );
302
+
303
+ $allowed_tags['li'] = array(
304
+ 'style' => true,
305
+ 'class' => true,
306
+ 'id' => true,
307
+ 'data-*' => true,
308
+ 'role' => true,
309
+ 'aria-labelledby' => true,
310
+ 'value' => true,
311
+ 'aria-modal' => true,
312
+ 'tabindex' => true
313
+ );
314
+
315
+ $allowed_tags['span'] = array(
316
+ 'style' => true,
317
+ 'class' => true,
318
+ 'id' => true,
319
+ 'data-*' => true,
320
+ 'aria-hidden' => true
321
+ );
322
+
323
+ $allowed_tags['form'] = array(
324
+ 'style' => true,
325
+ 'class' => true,
326
+ 'id' => true,
327
+ 'method' => true,
328
+ 'action' => true,
329
+ 'data-*' => true
330
+ );
331
+
332
+ $allowed_tags['style'] = array(
333
+ 'style' => true,
334
+ 'class' => true,
335
+ 'id' => true,
336
+ 'method' => true,
337
+ 'action' => true,
338
+ 'data-*' => true
339
+ );
340
+
341
+ $allowed_tags['p'] = array(
342
+ 'style' => true,
343
+ 'class' => true,
344
+ 'id' => true,
345
+ 'method' => true,
346
+ 'action' => true,
347
+ 'data-*' => true
348
+ );
349
+
350
+ $allowed_tags['br'] = array(
351
+ 'style' => true,
352
+ 'class' => true,
353
+ 'id' => true,
354
+ 'method' => true,
355
+ 'action' => true,
356
+ 'data-*' => true
357
+ );
358
+
359
+ echo wp_kses($html, $allowed_tags);
360
+
361
+ add_filter('safe_style_css', function ($styles) {
362
+
363
+ $styles_wf = array(
364
+ 'text-align',
365
+ 'margin',
366
+ 'color',
367
+ 'float',
368
+ 'border',
369
+ 'background',
370
+ 'background-color',
371
+ 'border-bottom',
372
+ 'border-bottom-color',
373
+ 'border-bottom-style',
374
+ 'border-bottom-width',
375
+ 'border-collapse',
376
+ 'border-color',
377
+ 'border-left',
378
+ 'border-left-color',
379
+ 'border-left-style',
380
+ 'border-left-width',
381
+ 'border-right',
382
+ 'border-right-color',
383
+ 'border-right-style',
384
+ 'border-right-width',
385
+ 'border-spacing',
386
+ 'border-style',
387
+ 'border-top',
388
+ 'border-top-color',
389
+ 'border-top-style',
390
+ 'border-top-width',
391
+ 'border-width',
392
+ 'caption-side',
393
+ 'clear',
394
+ 'cursor',
395
+ 'direction',
396
+ 'font',
397
+ 'font-family',
398
+ 'font-size',
399
+ 'font-style',
400
+ 'font-variant',
401
+ 'font-weight',
402
+ 'height',
403
+ 'letter-spacing',
404
+ 'line-height',
405
+ 'margin-bottom',
406
+ 'margin-left',
407
+ 'margin-right',
408
+ 'margin-top',
409
+ 'overflow',
410
+ 'padding',
411
+ 'padding-bottom',
412
+ 'padding-left',
413
+ 'padding-right',
414
+ 'padding-top',
415
+ 'text-decoration',
416
+ 'text-indent',
417
+ 'vertical-align',
418
+ 'width'
419
+ );
420
+
421
+ foreach ($styles_wf as $style_wf) {
422
+ if (($key = array_search($style_wf, $styles)) !== false) {
423
+ unset($styles[$key]);
424
+ }
425
+ }
426
+ return $styles;
427
+ });
428
+ }
429
 
430
  // render widget
431
  function widget_content() {
432
  require EPS_REDIRECT_PATH . '/libs/UserAgentParser.php';
433
 
434
  $log = get_option('eps_redirects_404_log', array());
435
+ $widget_html = '';
436
  if (!sizeof($log)) {
437
+ $widget_html .= '<p>You currently don\'t have any data in the 404 error log. That means that you either just installed the plugin, or that you never had a 404 error happen which is <b>awesome 🚀</b>!</p>';
438
+ $widget_html .= '<p>Don\'t like seeing an empty error log? Or just want to see see if the log works? Open any <a target="_blank" title="Open an nonexistent URL to see if the 404 error log works" href="' . home_url('/nonexistent/url/') . '">nonexistent URL</a> and then reload this page.</p>';
439
  } else {
440
+ $widget_html .= '<style>#wp301_404_errors .inside { padding: 0; margin: 0; }';
441
+ $widget_html .= '#wp301_404_errors table td { max-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }';
442
+ $widget_html .= '#wp301_404_errors table th { font-weight: 500; }';
443
+ $widget_html .= '#wp301_404_errors table { border-left: none; border-right: none; border-top: none; }';
444
+ $widget_html .= '#wp301_404_errors p { padding: 0 12px 12px 12px; }';
445
+ $widget_html .= '#wp301_404_errors .dashicons { opacity: 0.75; font-size: 17px; line-height: 17px; width: 17px; height: 17px;vertical-align: bottom; }</style>';
446
+ $widget_html .= '<table class="striped widefat">';
447
+ $widget_html .= '<tr>';
448
+ $widget_html .= '<th>Date &amp;<br>Time <span class="dashicons dashicons-arrow-down"></span></th>';
449
+ $widget_html .= '<th>Target URL</th>';
450
+ $widget_html .= '<th>User Device</th>';
451
+ $widget_html .= '</tr>';
452
 
453
  $i = 1;
454
  foreach ($log as $l) {
457
  if (empty($agent)) {
458
  $agent = '<i>unknown</i>';
459
  }
460
+ $widget_html .= '<tr>';
461
+ $widget_html .= '<td nowrap><abbr title="' . date(get_option('date_format'), $l['timestamp']) . ' @ ' . date(get_option('time_format'), $l['timestamp']) . '">' . human_time_diff(current_time('timestamp'), $l['timestamp']) . ' ago</abbr></td>';
462
+ $widget_html .= '<td><a title="Open target URL in a new tab" target="_blank" href="' . $l['url'] . '">' . $l['url'] . '</a> <span class="dashicons dashicons-external"></span></td>';
463
+ $widget_html .= '<td>' . $agent . '</td>';
464
+ $widget_html .= '</tr>';
465
  $i++;
466
  if ($i >= 6) {
467
  break;
468
  }
469
  } // foreach
470
+ $widget_html .= '</table>';
471
 
472
+ $widget_html .= '<p>View the entire <a href="' . admin_url('options-general.php?page=eps_redirects&tab=404s') . '">404 error log</a> in the 301 Redirects plugin or <a href="' . admin_url('options-general.php?page=eps_redirects') . '">create new redirect rules</a> to fix 404 errors.</p>';
473
  }
474
+ self::wp_kses_wf($widget_html);
475
  } // widget_content
476
 
477
 
605
  if (empty($array['url_to'][$i]) || empty($array['url_from'][$i])) continue;
606
  $new_redirects[] = array(
607
  'id' => isset($array['id'][$i]) ? $array['id'][$i] : null,
608
+ 'url_from' => sanitize_text_field($array['url_from'][$i]),
609
+ 'url_to' => sanitize_text_field($array['url_to'][$i]),
610
  'type' => (is_numeric($array['url_to'][$i])) ? 'post' : 'url',
611
  'status' => isset($array['status'][$i]) ? $array['status'][$i] : '301'
612
  );
636
 
637
  $update = array(
638
  'id' => ($_POST['id']) ? intval($_POST['id']) : false,
639
+ 'url_from' => sanitize_text_field($_POST['url_from']), // remove the $root from the url if supplied, and a leading /
640
+ 'url_to' => sanitize_text_field($_POST['url_to']),
641
  'type' => (is_numeric($_POST['url_to']) ? 'post' : 'url'),
642
+ 'status' => sanitize_text_field($_POST['status'])
643
  );
644
 
645
  $ids = self::_save_redirects(array($update));
763
  {
764
  global $wpdb;
765
  $table_name = $wpdb->prefix . "redirects";
766
+ $orderby = (isset($_GET['orderby'])) ? esc_sql(sanitize_text_field($_GET['orderby'])) : 'id';
767
+ $order = (isset($_GET['order'])) ? esc_sql(sanitize_text_field($_GET['order'])) : 'desc';
768
  $orderby = (in_array(strtolower($orderby), array('id', 'url_from', 'url_to', 'count'))) ? $orderby : 'id';
769
  $order = (in_array(strtolower($order), array('asc', 'desc'))) ? $order : 'desc';
770
 
869
  global $wpdb;
870
  $table_name = $wpdb->prefix . "redirects";
871
  $results = $wpdb->delete($table_name, array('ID' => intval($_POST['id'])));
872
+ echo json_encode(array('id' => intval($_POST['id'])));
873
  exit();
874
  }
875
  private static function _delete($id)
895
  {
896
  ob_start();
897
  ?>
898
+ <tr class="id-<?php echo ($redirect_id) ? esc_html($redirect_id) : 'new'; ?>">
899
  <?php include(EPS_REDIRECT_PATH . 'templates/template.redirect-entry-edit.php'); ?>
900
  </tr>
901
  <?php
940
  wp_die('You are not allowed to run this action.');
941
  }
942
 
943
+ self::wp_kses_wf(self::get_entry());
944
  exit();
945
  }
946
 
eps-form-elements.php CHANGED
@@ -78,16 +78,16 @@ function eps_get_destination($redirect = false)
78
  // This redirect points to a post
79
  if (get_permalink($redirect->url_to)) {
80
  ?>
81
- <a target="_blank" class="eps-url" href="<?php echo get_permalink($redirect->url_to); ?>" title="<?php echo get_permalink($redirect->url_to); ?>">
82
- <span class="eps-url-root eps-url-startcap"><?php echo strtoupper(get_post_type($redirect->url_to)); ?></span><span class="eps-url-root">ID:
83
- <?php echo $redirect->url_to; ?> </span><span class="eps-url-fragment eps-url-endcap "><?php echo get_the_title($redirect->url_to); ?> </span>
84
  </a>
85
  <?php
86
 
87
  } else {
88
  ?>
89
  <span class="eps-url eps-warning">
90
- <span class="eps-url-root eps-url-startcap">ID: <?php echo $redirect->url_to; ?> </span>
91
  <span class="eps-url-fragment eps-url-endcap ">DOES NOT EXIST</span>
92
  </span>
93
  <?php
@@ -96,9 +96,9 @@ function eps_get_destination($redirect = false)
96
  } else {
97
  // This is redirect points to a url
98
  ?>
99
- <a target="_blank" class="eps-url" href="<?php echo stripslashes(esc_url($redirect->url_to)); ?>" title="<?php echo stripslashes(esc_attr($redirect->url_to)); ?>">
100
  <span class="eps-url-root eps-url-startcap">URL:</span><span
101
- class="eps-url-fragment eps-url-endcap "><?php echo stripslashes(esc_attr($redirect->url_to)); ?></span>
102
  </a>
103
  <?php
104
 
@@ -203,10 +203,10 @@ function eps_get_ordered_filter($field, $label, $classes = array())
203
  $nextOrder = 'asc';
204
  $arrow = false;
205
 
206
- if (isset($_GET['orderby']) && $_GET['orderby'] == $field) {
207
  $arrow = '&darr;';
208
 
209
- if (isset($_GET['order']) && $_GET['order'] != 'desc') {
210
  $nextOrder = 'desc';
211
  $arrow = '&uarr;';
212
  }
@@ -214,9 +214,9 @@ function eps_get_ordered_filter($field, $label, $classes = array())
214
 
215
  printf(
216
  '<a class="%s" href="%s">%s %s</a>',
217
- implode(' ', $classes),
218
- $EPS_Redirects_Plugin->admin_url(array('orderby' => $field, 'order' => $nextOrder)),
219
- $label,
220
- $arrow
221
  );
222
  }
78
  // This redirect points to a post
79
  if (get_permalink($redirect->url_to)) {
80
  ?>
81
+ <a target="_blank" class="eps-url" href="<?php echo esc_url(get_permalink($redirect->url_to)); ?>" title="<?php echo esc_url(get_permalink($redirect->url_to)); ?>">
82
+ <span class="eps-url-root eps-url-startcap"><?php echo esc_attr(strtoupper(get_post_type($redirect->url_to))); ?></span><span class="eps-url-root">ID:
83
+ <?php echo esc_url($redirect->url_to); ?> </span><span class="eps-url-fragment eps-url-endcap "><?php echo esc_attr(get_the_title($redirect->url_to)); ?> </span>
84
  </a>
85
  <?php
86
 
87
  } else {
88
  ?>
89
  <span class="eps-url eps-warning">
90
+ <span class="eps-url-root eps-url-startcap">ID: <?php echo esc_attr($redirect->url_to); ?> </span>
91
  <span class="eps-url-fragment eps-url-endcap ">DOES NOT EXIST</span>
92
  </span>
93
  <?php
96
  } else {
97
  // This is redirect points to a url
98
  ?>
99
+ <a target="_blank" class="eps-url" href="<?php echo esc_url(stripslashes($redirect->url_to)); ?>" title="<?php echo esc_attr(stripslashes($redirect->url_to)); ?>">
100
  <span class="eps-url-root eps-url-startcap">URL:</span><span
101
+ class="eps-url-fragment eps-url-endcap "><?php echo esc_attr(stripslashes($redirect->url_to)); ?></span>
102
  </a>
103
  <?php
104
 
203
  $nextOrder = 'asc';
204
  $arrow = false;
205
 
206
+ if (isset($_GET['orderby']) && sanitize_text_field($_GET['orderby']) == $field) {
207
  $arrow = '&darr;';
208
 
209
+ if (isset($_GET['order']) && sanitize_text_field($_GET['order']) != 'desc') {
210
  $nextOrder = 'desc';
211
  $arrow = '&uarr;';
212
  }
214
 
215
  printf(
216
  '<a class="%s" href="%s">%s %s</a>',
217
+ esc_attr(implode(' ', $classes)),
218
+ esc_url($EPS_Redirects_Plugin->admin_url(array('orderby' => $field, 'order' => $nextOrder))),
219
+ esc_attr($label),
220
+ esc_attr($arrow)
221
  );
222
  }
js/scripts.js CHANGED
@@ -48,7 +48,6 @@ jQuery(document).ready(function($) {
48
  },
49
  success: function(data) {
50
  var data = jQuery.parseJSON(data);
51
- //console.log(data);
52
  $('#eps-redirect-edit').remove();
53
  $('tr.redirect-entry').removeClass('active');
54
  $('tr.redirect-entry[data-id=' + data.redirect_id + ']').addClass(
@@ -140,7 +139,6 @@ jQuery(document).ready(function($) {
140
  $(this).prop('disabled', true);
141
  $(this).attr('disabled', 'disabled'); // Disable button to disallow multiple submissions.
142
 
143
- // Do the request
144
  $.ajax({
145
  type: 'POST',
146
  url: ajaxurl,
@@ -159,7 +157,6 @@ jQuery(document).ready(function($) {
159
  $('#eps-redirect-add').hide();
160
  $(data.html).insertBefore('tr#eps-redirect-add');
161
  } else {
162
- // If it's a new blank form.. why have an id?
163
  alert('Something strange happened. A new entry could not be loaded.');
164
  }
165
  $('#eps-redirect-new').removeProp('disabled');
@@ -214,11 +211,22 @@ jQuery(document).ready(function($) {
214
  }
215
  });
216
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  /**
218
  * Tabs
219
  */
220
  $('#eps-tab-nav .eps-tab-nav-item').on('click', function(e) {
221
- //e.preventDefault();
222
  var target = $(this).attr('href');
223
 
224
  $('#eps-tabs .eps-tab').hide();
@@ -271,7 +279,7 @@ jQuery(document).ready(function($) {
271
  dialogClass: 'wp-dialog eps-pro-dialog',
272
  modal: true,
273
  resizable: false,
274
- width: 800,
275
  height: 'auto',
276
  show: 'fade',
277
  hide: 'fade',
@@ -288,6 +296,18 @@ jQuery(document).ready(function($) {
288
  if (eps_301.auto_open_pro_dialog) {
289
  $('#eps-pro-dialog').dialog('open');
290
  }
 
 
 
 
 
 
 
 
 
 
 
 
291
  }); // on ready
292
 
293
  function eps_fix_dialog_close(event, ui) {
48
  },
49
  success: function(data) {
50
  var data = jQuery.parseJSON(data);
 
51
  $('#eps-redirect-edit').remove();
52
  $('tr.redirect-entry').removeClass('active');
53
  $('tr.redirect-entry[data-id=' + data.redirect_id + ']').addClass(
139
  $(this).prop('disabled', true);
140
  $(this).attr('disabled', 'disabled'); // Disable button to disallow multiple submissions.
141
 
 
142
  $.ajax({
143
  type: 'POST',
144
  url: ajaxurl,
157
  $('#eps-redirect-add').hide();
158
  $(data.html).insertBefore('tr#eps-redirect-add');
159
  } else {
 
160
  alert('Something strange happened. A new entry could not be loaded.');
161
  }
162
  $('#eps-redirect-new').removeProp('disabled');
211
  }
212
  });
213
 
214
+ /**
215
+ * Reset redirect stats
216
+ */
217
+ $('#eps_reset_stats').on('click', function(e) {
218
+ if (confirm('Are you sure you want to reset hits count on all redirect rules? There is NO undo!')) {
219
+ return true;
220
+ } else {
221
+ e.preventDefault();
222
+ return false;
223
+ }
224
+ });
225
+
226
  /**
227
  * Tabs
228
  */
229
  $('#eps-tab-nav .eps-tab-nav-item').on('click', function(e) {
 
230
  var target = $(this).attr('href');
231
 
232
  $('#eps-tabs .eps-tab').hide();
279
  dialogClass: 'wp-dialog eps-pro-dialog',
280
  modal: true,
281
  resizable: false,
282
+ width: 850,
283
  height: 'auto',
284
  show: 'fade',
285
  hide: 'fade',
296
  if (eps_301.auto_open_pro_dialog) {
297
  $('#eps-pro-dialog').dialog('open');
298
  }
299
+
300
+ if(window.location.hash == '#open-pro-dialog' && !eps_301.auto_open_pro_dialog) {
301
+ pro_feature = 'url-hash';
302
+
303
+ $('#eps-pro-dialog').dialog('open');
304
+
305
+ $('#eps-pro-table .button-buy').each(function(ind, el) {
306
+ tmp = $(el).data('href-org');
307
+ tmp = tmp.replace('pricing-table', pro_feature);
308
+ $(el).attr('href', tmp);
309
+ });
310
+ };
311
  }); // on ready
312
 
313
  function eps_fix_dialog_close(event, ui) {
libs/eps-plugin-options.php CHANGED
@@ -70,6 +70,13 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
70
  'callback' => '404s',
71
  'fields' => array(),
72
  ),
 
 
 
 
 
 
 
73
  'import-export' =>
74
  array (
75
  'title' => 'Tools &amp; Options',
@@ -196,12 +203,12 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
196
  function section_callback($args)
197
  {
198
  if (isset($_GET['tab'])) {
199
- $tab = $_GET['tab'];
200
  } else {
201
  $sections = array_keys($this->settings);
202
  $tab = $sections[0];
203
  }
204
- echo $this->settings[$tab]['description'];
205
  }
206
 
207
  /**
@@ -217,10 +224,10 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
217
  $setting = get_option($this->setting_slug($args['section']));
218
  printf(
219
  "<input type='text' name='%s[%s]' value='%s' /><small>%s</small>",
220
- $option_slug,
221
- $args['slug'],
222
- (isset($setting[$args['slug']]) ? $setting[$args['slug']] : null),
223
- $args['description']
224
  );
225
  }
226
 
@@ -241,7 +248,7 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
241
  return $func($this->plugin->name, $this->plugin->name, $this->plugin->config('page_permission'), $this->plugin->config('page_slug'), array($this, 'do_admin_page'));
242
  } else {
243
  // TODO proper errors dude.
244
- printf('ERROR: menu location "%s" not valid.', $this->config['menu_location']);
245
  }
246
  return false;
247
  }
@@ -257,26 +264,27 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
257
  */
258
  public function do_admin_page()
259
  {
260
- $current_tab = isset($_GET['tab']) ? $_GET['tab'] : false;
261
  if (!$current_tab) {
262
  $sections = $this->settings;
263
  $current_tab = key($sections);
264
  }
265
  ?>
266
  <div class="wrap">
267
- <h1><img src="<?php echo EPS_REDIRECT_URL . 'images/wp-301-logo.png' ?>" alt="<?php echo $this->plugin->name; ?>" title="<?php echo $this->plugin->name; ?>"><span><?php echo $this->plugin->name; ?></span></h1><br>
268
  <div id="eps-tabs-wrapper">
269
  <?php $this->get_tab_nav($current_tab); ?>
270
  <?php $this->get_tab($current_tab); ?>
271
  </div>
272
  <div id="eps-sidebar-wrapper">
273
  <div class="sidebar-box pro-ad-box">
274
- <p class="text-center"><a href="https://wp301redirects.com/?ref=eps-free-sidebar-box" target="_blank"><img src="<?php echo EPS_REDIRECT_URL . 'images/wp-301-logo-full.png'; ?>" alt="WP 301 Redirects PRO" title="WP 301 Redirects PRO"></a><br><b>PRO version</b> is here! Grab the launch discount - <b>all prices are LIFETIME!</b></p>
275
 
276
  <ul class="plain-list">
277
  <li>Advanced Redirects Management &amp; URL Matching Rules</li>
278
  <li>Auto-fix URL Typos (no rules needed)</li>
279
  <li>Detailed 404 &amp; Redirect Stats + Email Reports</li>
 
280
  <li>URL Cloaking + other features for affiliate marketers</li>
281
  <li>Licenses &amp; Sites Manager (remote SaaS dashboard)</li>
282
  <li>Remote Site Stats (stats for all your sites in one place)</li>
@@ -294,7 +302,7 @@ if (!class_exists('EPS_Redirects_Plugin_Options')) {
294
  </div>
295
  </div>
296
  <?php
297
- echo $this->pro_dialog();
298
  }
299
 
300
  /**
@@ -312,10 +320,10 @@ function get_tab_nav($current = 'general')
312
  $class .= ($tab == $current) ? ' nav-tab-active' : '';
313
  printf(
314
  "<a class='nav-tab %s' href='?page=%s&tab=%s'>%s</a>",
315
- $class,
316
- $this->plugin->config('option_slug'),
317
- $tab,
318
- $args['title']
319
  );
320
  }
321
  echo '</h2>';
@@ -408,11 +416,13 @@ function pro_dialog() {
408
  $out .= '<td><span class="dashicons dashicons-yes"></span><b>100 Sites License</b> ($1 per site)</td>';
409
  $out .= '</tr>';
410
 
 
411
  $out .= '<tr>';
412
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
413
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
414
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
415
  $out .= '</tr>';
 
416
 
417
  $out .= '<tr>';
418
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced URL Matching Rules</td>';
@@ -421,9 +431,9 @@ function pro_dialog() {
421
  $out .= '</tr>';
422
 
423
  $out .= '<tr>';
424
- $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos</td>';
425
- $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos</td>';
426
- $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos</td>';
427
  $out .= '</tr>';
428
 
429
  $out .= '<tr>';
@@ -432,13 +442,19 @@ function pro_dialog() {
432
  $out .= '<td><span class="dashicons dashicons-yes"></span>Detailed 404 &amp; Redirect Stats</td>';
433
  $out .= '</tr>';
434
 
435
-
436
  $out .= '<tr>';
437
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
438
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
439
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
440
  $out .= '</tr>';
 
441
 
 
 
 
 
 
442
 
443
  $out .= '<tr>';
444
  $out .= '<td><span class="dashicons dashicons-yes"></span>Licenses & Sites Manager (SaaS)</td>';
@@ -477,7 +493,7 @@ function pro_dialog() {
477
  $out .= '</tr>';
478
 
479
  $out .= '<tr>';
480
- $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=personal-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=personal-launch&ref=pricing-table" target="_blank">BUY NOW</a><br>- or -<br><a target="_blank" class="button-buy" data-href-org="https://wp301redirects.com/buy/?product=personal-monthly&ref=pricing-table" href="https://wp301redirects.com/buy/?product=personal-monthly&ref=pricing-table">Only $5.99 <small>/month</small></a></td>';
481
  $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=team-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=team-launch&ref=pricing-table" target="_blank">BUY NOW</a></td>';
482
  $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=agency-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=agency-launch&ref=pricing-table" target="_blank">BUY NOW</a></td>';
483
  $out .= '</tr>';
70
  'callback' => '404s',
71
  'fields' => array(),
72
  ),
73
+ 'link-scanner' =>
74
+ array (
75
+ 'title' => 'Link Scanner',
76
+ 'description' => '',
77
+ 'callback' => 'link_scanner',
78
+ 'fields' => array(),
79
+ ),
80
  'import-export' =>
81
  array (
82
  'title' => 'Tools &amp; Options',
203
  function section_callback($args)
204
  {
205
  if (isset($_GET['tab'])) {
206
+ $tab = sanitize_text_field($_GET['tab']);
207
  } else {
208
  $sections = array_keys($this->settings);
209
  $tab = $sections[0];
210
  }
211
+ EPS_Redirects::wp_kses_wf($this->settings[$tab]['description']);
212
  }
213
 
214
  /**
224
  $setting = get_option($this->setting_slug($args['section']));
225
  printf(
226
  "<input type='text' name='%s[%s]' value='%s' /><small>%s</small>",
227
+ esc_attr($option_slug),
228
+ esc_attr($args['slug']),
229
+ (isset($setting[$args['slug']]) ? esc_attr(setting[$args['slug']]) : null),
230
+ esc_attr($args['description'])
231
  );
232
  }
233
 
248
  return $func($this->plugin->name, $this->plugin->name, $this->plugin->config('page_permission'), $this->plugin->config('page_slug'), array($this, 'do_admin_page'));
249
  } else {
250
  // TODO proper errors dude.
251
+ printf('ERROR: menu location "%s" not valid.', esc_attr($this->config['menu_location']));
252
  }
253
  return false;
254
  }
264
  */
265
  public function do_admin_page()
266
  {
267
+ $current_tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : false;
268
  if (!$current_tab) {
269
  $sections = $this->settings;
270
  $current_tab = key($sections);
271
  }
272
  ?>
273
  <div class="wrap">
274
+ <h1><img src="<?php echo esc_attr(EPS_REDIRECT_URL) . 'images/wp-301-logo.png' ?>" alt="<?php echo esc_attr($this->plugin->name); ?>" title="<?php echo esc_attr($this->plugin->name); ?>"><span><?php echo esc_attr($this->plugin->name); ?></span></h1><br>
275
  <div id="eps-tabs-wrapper">
276
  <?php $this->get_tab_nav($current_tab); ?>
277
  <?php $this->get_tab($current_tab); ?>
278
  </div>
279
  <div id="eps-sidebar-wrapper">
280
  <div class="sidebar-box pro-ad-box">
281
+ <p class="text-center"><a href="https://wp301redirects.com/?ref=eps-free-sidebar-box" target="_blank"><img src="<?php echo esc_attr(EPS_REDIRECT_URL) . 'images/wp-301-logo-full.png'; ?>" alt="WP 301 Redirects PRO" title="WP 301 Redirects PRO"></a><br><b>PRO version</b> is here! Grab the launch discount - <b>all prices are LIFETIME!</b></p>
282
 
283
  <ul class="plain-list">
284
  <li>Advanced Redirects Management &amp; URL Matching Rules</li>
285
  <li>Auto-fix URL Typos (no rules needed)</li>
286
  <li>Detailed 404 &amp; Redirect Stats + Email Reports</li>
287
+ <li>Link Scanner - check every single link on your site</li>
288
  <li>URL Cloaking + other features for affiliate marketers</li>
289
  <li>Licenses &amp; Sites Manager (remote SaaS dashboard)</li>
290
  <li>Remote Site Stats (stats for all your sites in one place)</li>
302
  </div>
303
  </div>
304
  <?php
305
+ EPS_Redirects::wp_kses_wf($this->pro_dialog());
306
  }
307
 
308
  /**
320
  $class .= ($tab == $current) ? ' nav-tab-active' : '';
321
  printf(
322
  "<a class='nav-tab %s' href='?page=%s&tab=%s'>%s</a>",
323
+ esc_attr($class),
324
+ esc_attr($this->plugin->config('option_slug')),
325
+ esc_attr($tab),
326
+ esc_attr($args['title'])
327
  );
328
  }
329
  echo '</h2>';
416
  $out .= '<td><span class="dashicons dashicons-yes"></span><b>100 Sites License</b> ($1 per site)</td>';
417
  $out .= '</tr>';
418
 
419
+ /*
420
  $out .= '<tr>';
421
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
422
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
423
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced Redirects Management</td>';
424
  $out .= '</tr>';
425
+ */
426
 
427
  $out .= '<tr>';
428
  $out .= '<td><span class="dashicons dashicons-yes"></span>Advanced URL Matching Rules</td>';
431
  $out .= '</tr>';
432
 
433
  $out .= '<tr>';
434
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos &amp; URL Cloaking</td>';
435
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos &amp; URL Cloaking</td>';
436
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Auto-fix URL Typos &amp; URL Cloaking</td>';
437
  $out .= '</tr>';
438
 
439
  $out .= '<tr>';
442
  $out .= '<td><span class="dashicons dashicons-yes"></span>Detailed 404 &amp; Redirect Stats</td>';
443
  $out .= '</tr>';
444
 
445
+ /*
446
  $out .= '<tr>';
447
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
448
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
449
  $out .= '<td><span class="dashicons dashicons-yes"></span>URL Cloaking</td>';
450
  $out .= '</tr>';
451
+ */
452
 
453
+ $out .= '<tr>';
454
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Link Scanner</td>';
455
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Link Scanner</td>';
456
+ $out .= '<td><span class="dashicons dashicons-yes"></span>Link Scanner</td>';
457
+ $out .= '</tr>';
458
 
459
  $out .= '<tr>';
460
  $out .= '<td><span class="dashicons dashicons-yes"></span>Licenses & Sites Manager (SaaS)</td>';
493
  $out .= '</tr>';
494
 
495
  $out .= '<tr>';
496
+ $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=personal-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=personal-launch&ref=pricing-table" target="_blank">BUY NOW</a><br>or <a target="_blank" class="button-buy" data-href-org="https://wp301redirects.com/buy/?product=personal-monthly&ref=pricing-table" href="https://wp301redirects.com/buy/?product=personal-monthly&ref=pricing-table">only $5.99 <small>/month</small></a></td>';
497
  $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=team-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=team-launch&ref=pricing-table" target="_blank">BUY NOW</a></td>';
498
  $out .= '<td><span>one-time payment</span><a class="button button-buy" data-href-org="https://wp301redirects.com/buy/?product=agency-launch&ref=pricing-table" href="https://wp301redirects.com/buy/?product=agency-launch&ref=pricing-table" target="_blank">BUY NOW</a></td>';
499
  $out .= '</tr>';
license.txt ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.
plugin.php CHANGED
@@ -64,6 +64,7 @@ class EPS_Redirects_Plugin
64
  add_action('redirects_admin_tab', array($this, 'admin_tab_redirects'), 10, 1);
65
  add_action('404s_admin_tab', array($this, 'admin_tab_404s'), 10, 1);
66
  add_action('support_admin_tab', array($this, 'admin_tab_support'), 10, 1);
 
67
  add_action('error_admin_tab', array($this, 'admin_tab_error'), 10, 1);
68
  add_action('import-export_admin_tab', array($this, 'admin_tab_import_export'), 10, 1);
69
  add_action('eps_redirects_panels_left', array($this, 'admin_panel_cache'));
@@ -75,17 +76,6 @@ class EPS_Redirects_Plugin
75
  add_action('admin_init', array($this, 'check_plugin_actions'));
76
  }
77
 
78
- public function resolve_dependencies()
79
- {
80
- include_once(ABSPATH . 'wp-admin/includes/plugin.php');
81
- foreach ($this->dependencies as $name => $path_to_plugin) {
82
- if (!is_plugin_active($path_to_plugin)) {
83
- echo $name . ' IS NOT INSTALLED!';
84
- }
85
- }
86
- }
87
-
88
-
89
  private function resource_path($path, $resource)
90
  {
91
  return strtolower(
@@ -124,7 +114,7 @@ class EPS_Redirects_Plugin
124
 
125
  $notices = get_option('301-redirects-notices', array());
126
 
127
- if ($_GET['notice'] == 'rate') {
128
  $notices['dismiss_rate'] = true;
129
  } else {
130
  wp_safe_redirect(admin_url());
@@ -147,7 +137,7 @@ class EPS_Redirects_Plugin
147
  global $wpdb;
148
  $table_name = $wpdb->prefix . "redirects";
149
 
150
- if (@$_GET['page'] != 'eps_redirects') {
151
  return;
152
  }
153
 
@@ -166,7 +156,7 @@ class EPS_Redirects_Plugin
166
  $rate_url = 'https://wordpress.org/support/plugin/eps-301-redirects/reviews/?filter=5&rate=5#new-post';
167
  $dismiss_url = add_query_arg(array('action' => '301_dismiss_notice', 'notice' => 'rate', 'redirect' => urlencode($_SERVER['REQUEST_URI'])), admin_url('admin.php'));
168
 
169
- echo '<div id="301_rate_notice" style="font-size: 14px;" class="notice-info notice"><p>Hi!<br>Saw that you already have ' . $tmp2 . ' redirect rules that got used ' . $tmp1 . ' times - that\'s awesome! We wanted to ask for your help to <b>make the plugin better</b>.<br>We just need a minute of your time to rate the plugin. It helps us out a lot!';
170
 
171
  echo '<br><a target="_blank" href="' . esc_url($rate_url) . '" style="vertical-align: baseline; margin-top: 15px;" class="button-primary">Help make the plugin better by rating it</a>';
172
  echo '&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . esc_url($dismiss_url) . '">I\'ve already rated the plugin</a>';
@@ -280,7 +270,7 @@ class EPS_Redirects_Plugin
280
 
281
  $pointers = get_option('eps_pointers');
282
 
283
- if (is_admin() && $pointers && !empty($wp_rewrite->permalink_structure) && (empty($_GET['page']) || $_GET['page'] != $EPS_Redirects_Plugin->config('page_slug'))) {
284
  $pointers['_nonce_dismiss_pointer'] = wp_create_nonce('eps_dismiss_pointer');
285
  wp_enqueue_script('wp-pointer');
286
  wp_enqueue_script('eps-pointers', plugins_url('js/eps-admin-pointers.js', __FILE__), array('jquery'), EPS_REDIRECT_VERSION, true);
@@ -288,7 +278,7 @@ class EPS_Redirects_Plugin
288
  wp_localize_script('wp-pointer', 'eps_pointers', $pointers);
289
  }
290
 
291
- if (is_admin() && isset($_GET['page']) && $_GET['page'] == $EPS_Redirects_Plugin->config('page_slug')) {
292
  // uncomment if we want to remove pointer after plugin settings are open
293
  // unset($pointers['welcome']);
294
  // update_option('eps_pointers', $pointers);
@@ -350,7 +340,7 @@ class EPS_Redirects_Plugin
350
  */
351
  public function check_plugin_actions()
352
  {
353
- if (is_admin() && isset($_GET['page']) && $_GET['page'] == $this->config('page_slug')) {
354
  // Upload a CSV
355
  if (isset($_POST['eps_redirect_upload']) && wp_verify_nonce($_POST['eps_redirect_nonce_submit'], 'eps_redirect_nonce')) {
356
  self::_upload();
@@ -377,13 +367,19 @@ class EPS_Redirects_Plugin
377
  $this->add_admin_message("Success: All Redirect Rules Deleted.", "updated");
378
  }
379
 
 
 
 
 
 
 
380
  // Save Redirects
381
  if (isset($_POST['eps_redirect_submit']) && wp_verify_nonce($_POST['eps_redirect_nonce_submit'], 'eps_redirect_nonce')) {
382
  self::_save_redirects(EPS_Redirects::_parse_serial_array($_POST['redirect']));
383
  }
384
 
385
  // Create tables
386
- if (isset($_GET['action']) && $_GET['action'] == 'eps_create_tables') {
387
  $result = self::_create_redirect_table();
388
  }
389
  }
@@ -397,6 +393,15 @@ class EPS_Redirects_Plugin
397
  return true;
398
  }
399
 
 
 
 
 
 
 
 
 
 
400
  static function empty_3rd_party_cache() {
401
  wp_cache_flush();
402
  if (function_exists('w3tc_flush_all')) {
@@ -460,7 +465,7 @@ class EPS_Redirects_Plugin
460
  $entry->url_to,
461
  $entry->count
462
  );
463
- echo implode(',', $csv);
464
  echo "\n";
465
  }
466
 
@@ -587,7 +592,7 @@ class EPS_Redirects_Plugin
587
  $save_redirects = array();
588
  foreach ($new_redirects as $redirect) {
589
  // Decide how to handle duplicates:
590
- switch (strtolower($_POST['eps_redirect_upload_method'])) {
591
  case 'skip':
592
  if (!EPS_Redirects::redirect_exists($redirect)) {
593
  $save_redirects[] = $redirect;
@@ -661,6 +666,10 @@ class EPS_Redirects_Plugin
661
  {
662
  include(EPS_REDIRECT_PATH . 'templates/admin-tab-support.php');
663
  }
 
 
 
 
664
  public static function admin_tab_import_export($options)
665
  {
666
  include(EPS_REDIRECT_PATH . 'templates/admin-tab-import-export.php');
@@ -716,6 +725,7 @@ class EPS_Redirects_Plugin
716
  $this->messages[] = array($code => $message);
717
  add_action('admin_notices', array($this, 'display_admin_messages'));
718
  }
 
719
  public static function display_admin_messages()
720
  {
721
  global $EPS_Redirects_Plugin;
@@ -735,9 +745,10 @@ class EPS_Redirects_Plugin
735
  {
736
  printf(
737
  '<div class="%s"><p>%s</p></div>',
738
- $type,
739
- $string
740
  );
 
741
  }
742
 
743
 
64
  add_action('redirects_admin_tab', array($this, 'admin_tab_redirects'), 10, 1);
65
  add_action('404s_admin_tab', array($this, 'admin_tab_404s'), 10, 1);
66
  add_action('support_admin_tab', array($this, 'admin_tab_support'), 10, 1);
67
+ add_action('link-scanner_admin_tab', array($this, 'admin_tab_link_scanner'), 10, 1);
68
  add_action('error_admin_tab', array($this, 'admin_tab_error'), 10, 1);
69
  add_action('import-export_admin_tab', array($this, 'admin_tab_import_export'), 10, 1);
70
  add_action('eps_redirects_panels_left', array($this, 'admin_panel_cache'));
76
  add_action('admin_init', array($this, 'check_plugin_actions'));
77
  }
78
 
 
 
 
 
 
 
 
 
 
 
 
79
  private function resource_path($path, $resource)
80
  {
81
  return strtolower(
114
 
115
  $notices = get_option('301-redirects-notices', array());
116
 
117
+ if (sanitize_text_field($_GET['notice']) == 'rate') {
118
  $notices['dismiss_rate'] = true;
119
  } else {
120
  wp_safe_redirect(admin_url());
137
  global $wpdb;
138
  $table_name = $wpdb->prefix . "redirects";
139
 
140
+ if (empty($_GET['page']) || sanitize_text_field($_GET['page']) != 'eps_redirects') {
141
  return;
142
  }
143
 
156
  $rate_url = 'https://wordpress.org/support/plugin/eps-301-redirects/reviews/?filter=5&rate=5#new-post';
157
  $dismiss_url = add_query_arg(array('action' => '301_dismiss_notice', 'notice' => 'rate', 'redirect' => urlencode($_SERVER['REQUEST_URI'])), admin_url('admin.php'));
158
 
159
+ echo '<div id="301_rate_notice" style="font-size: 14px;" class="notice-info notice"><p>Hi!<br>Saw that you already have ' . esc_attr($tmp2) . ' redirect rules that got used ' . esc_attr($tmp1) . ' times - that\'s awesome! We wanted to ask for your help to <b>make the plugin better</b>.<br>We just need a minute of your time to rate the plugin. It helps us out a lot!';
160
 
161
  echo '<br><a target="_blank" href="' . esc_url($rate_url) . '" style="vertical-align: baseline; margin-top: 15px;" class="button-primary">Help make the plugin better by rating it</a>';
162
  echo '&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . esc_url($dismiss_url) . '">I\'ve already rated the plugin</a>';
270
 
271
  $pointers = get_option('eps_pointers');
272
 
273
+ if (is_admin() && $pointers && !empty($wp_rewrite->permalink_structure) && (empty($_GET['page']) || sanitize_text_field($_GET['page']) != $EPS_Redirects_Plugin->config('page_slug'))) {
274
  $pointers['_nonce_dismiss_pointer'] = wp_create_nonce('eps_dismiss_pointer');
275
  wp_enqueue_script('wp-pointer');
276
  wp_enqueue_script('eps-pointers', plugins_url('js/eps-admin-pointers.js', __FILE__), array('jquery'), EPS_REDIRECT_VERSION, true);
278
  wp_localize_script('wp-pointer', 'eps_pointers', $pointers);
279
  }
280
 
281
+ if (is_admin() && isset($_GET['page']) && sanitize_text_field($_GET['page']) == $EPS_Redirects_Plugin->config('page_slug')) {
282
  // uncomment if we want to remove pointer after plugin settings are open
283
  // unset($pointers['welcome']);
284
  // update_option('eps_pointers', $pointers);
340
  */
341
  public function check_plugin_actions()
342
  {
343
+ if (is_admin() && isset($_GET['page']) && sanitize_text_field($_GET['page']) == $this->config('page_slug')) {
344
  // Upload a CSV
345
  if (isset($_POST['eps_redirect_upload']) && wp_verify_nonce($_POST['eps_redirect_nonce_submit'], 'eps_redirect_nonce')) {
346
  self::_upload();
367
  $this->add_admin_message("Success: All Redirect Rules Deleted.", "updated");
368
  }
369
 
370
+ // reset redirect hits
371
+ if (isset($_POST['eps_reset_stats']) && wp_verify_nonce($_POST['eps_redirect_nonce_submit'], 'eps_redirect_nonce')) {
372
+ self::reset_stats();
373
+ $this->add_admin_message("Success: Redirect hits have been reset.", "updated");
374
+ }
375
+
376
  // Save Redirects
377
  if (isset($_POST['eps_redirect_submit']) && wp_verify_nonce($_POST['eps_redirect_nonce_submit'], 'eps_redirect_nonce')) {
378
  self::_save_redirects(EPS_Redirects::_parse_serial_array($_POST['redirect']));
379
  }
380
 
381
  // Create tables
382
+ if (isset($_GET['action']) && sanitize_text_field($_GET['action']) == 'eps_create_tables') {
383
  $result = self::_create_redirect_table();
384
  }
385
  }
393
  return true;
394
  }
395
 
396
+ static function reset_stats() {
397
+ global $wpdb;
398
+ $table = $wpdb->prefix . 'redirects';
399
+
400
+ $wpdb->query('UPDATE ' . $table . ' SET count = 0');
401
+
402
+ return true;
403
+ }
404
+
405
  static function empty_3rd_party_cache() {
406
  wp_cache_flush();
407
  if (function_exists('w3tc_flush_all')) {
465
  $entry->url_to,
466
  $entry->count
467
  );
468
+ echo esc_attr(implode(',', $csv));
469
  echo "\n";
470
  }
471
 
592
  $save_redirects = array();
593
  foreach ($new_redirects as $redirect) {
594
  // Decide how to handle duplicates:
595
+ switch (strtolower(sanitize_text_field($_POST['eps_redirect_upload_method']))) {
596
  case 'skip':
597
  if (!EPS_Redirects::redirect_exists($redirect)) {
598
  $save_redirects[] = $redirect;
666
  {
667
  include(EPS_REDIRECT_PATH . 'templates/admin-tab-support.php');
668
  }
669
+ public static function admin_tab_link_scanner($options)
670
+ {
671
+ include(EPS_REDIRECT_PATH . 'templates/admin-tab-link-scanner.php');
672
+ }
673
  public static function admin_tab_import_export($options)
674
  {
675
  include(EPS_REDIRECT_PATH . 'templates/admin-tab-import-export.php');
725
  $this->messages[] = array($code => $message);
726
  add_action('admin_notices', array($this, 'display_admin_messages'));
727
  }
728
+
729
  public static function display_admin_messages()
730
  {
731
  global $EPS_Redirects_Plugin;
745
  {
746
  printf(
747
  '<div class="%s"><p>%s</p></div>',
748
+ esc_attr($type),
749
+ wp_kses_post($string)
750
  );
751
+
752
  }
753
 
754
 
readme.txt CHANGED
@@ -1,26 +1,26 @@
1
  === 301 Redirects - Easy Redirect Manager ===
2
  Contributors: WebFactory
3
- Tags: 301 redirect, redirects, redirect, 404 error log, redirection, 302 redirect, 302, seo, 302 redirect, 404, 404 redirect, 301, 307, 404 log
4
  Requires at least: 4.0
5
- Tested up to: 5.8
6
- Stable tag: 2.70
7
  Requires PHP: 5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Easily manage 301 & 302 redirects. Simple to use & validate redirects. Includes redirection stats & 404 error log.
12
 
13
  == Description ==
14
 
15
- <a href="https://wp301redirects.com/?ref=wporg">301 Redirects</a> helps you manage and create 301, 302, 307 redirects for your WordPress site to **improve SEO and visitor experience**. With a user-friendly interface, 301 Redirects is easy to use. Perfect for new sites or repairing links after reorganizing your existing WordPress content, or when your site has content that expires and you wish to avoid sending visitors to a 404 error page. Use the 404 error log to identify problematic links and make redirection easy.
16
 
17
  301 Redirects GUI is located in WP Admin - Settings - 301 Redirects
18
  404 Error Log widget can be found in the WP Admin - Dashboard
19
 
20
  **Features**
21
 
22
- * Choose from Pages, Posts, Custom Post types, Archives, and Term Archives from dropdown menu
23
- * Or, set a custom destination URL for redirection
24
  * Retain query strings across redirects
25
  * Super-fast redirection
26
  * 404 error log
@@ -30,7 +30,7 @@ Easily manage 301 & 302 redirects. Simple to use & validate redirects. Includes
30
  * Fully compatible with translation plugins (Weglot, TranslatePress, Gtranslate, Loco Translate) that use lang prefix in URL
31
 
32
  **Need more features?**
33
- <a href="https://wp301redirects.com/?ref=wporg">WP 301 Redirects PRO</a> offers wildcard & regular expression URL matching, auto-typo fixing in URLs, complete redirect and 404 log, and a centralized SaaS dashboard to monitor redirects on all your sites from one place.
34
 
35
  **What is a 301 Redirect?**
36
  A redirect is a simple way to re-route traffic coming to a *Requested URL* to different *Destination URL*.
@@ -40,7 +40,6 @@ A 301 redirect indicates that the page requested has been permanently moved to t
40
  [youtube https://www.youtube.com/watch?v=70Yn_lO_8BA]
41
 
42
  **When Should I use 301 Redirects?**
43
-
44
  * Replacing an old site design with a new site design
45
  * Overhauling or re-organizing your existing WordPress content
46
  * You have content that expires (or is otherwise no longer available) and you wish to redirect users elsewhere
@@ -48,8 +47,10 @@ A 301 redirect indicates that the page requested has been permanently moved to t
48
  **Is the 404 error log GDPR friendly?**
49
  The 404 error log does not collect user IPs. It collects the following data: timestamp of the event, the (404) URL that was opened, and the user-agent string.
50
 
51
- **External libraries used in the project**
 
52
 
 
53
  * <a href="https://github.com/donatj/PhpUserAgent">PHP User Agent Parser</a>
54
 
55
 
@@ -69,6 +70,11 @@ The 404 error log does not collect user IPs. It collects the following data: tim
69
 
70
  == Changelog ==
71
 
 
 
 
 
 
72
  = 2.70 =
73
  * 2021/05/01
74
  * 404 error log widget is now visible only to users with manage_options permission
@@ -76,7 +82,7 @@ The 404 error log does not collect user IPs. It collects the following data: tim
76
 
77
  = 2.67 =
78
  * 2021/03/16
79
- * fixed a small security issue
80
 
81
  = 2.66 =
82
  * 2021/02/23
1
  === 301 Redirects - Easy Redirect Manager ===
2
  Contributors: WebFactory
3
+ Tags: 301 redirect, redirects, redirect, 404 error log, redirection, 302, seo, 302 redirect, 404, 404 redirect, 301, 307, 404 log
4
  Requires at least: 4.0
5
+ Tested up to: 6.1
6
+ Stable tag: 2.72
7
  Requires PHP: 5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Manage 301 & 302 redirects. Simple redirection & redirects validation. Includes redirect stats & 404 error log.
12
 
13
  == Description ==
14
 
15
+ <a href="https://wp301redirects.com/?ref=wporg">301 Redirects</a> helps you manage and create 301, 302, 307 redirects for WordPress site to **improve SEO & visitor experience**. 301 Redirects is easy to use. Perfect for new sites or repairing links after reorganizing your old content, or when your site has content that expires and you wish to avoid sending visitors to a 404 error page and want to create redirection instead. Use the 404 error log to identify problematic links.
16
 
17
  301 Redirects GUI is located in WP Admin - Settings - 301 Redirects
18
  404 Error Log widget can be found in the WP Admin - Dashboard
19
 
20
  **Features**
21
 
22
+ * Choose from Pages, Posts, Custom Post types, Archives, and Term Archives from dropdown menu to create redirection
23
+ * Or, set a custom destination URL!
24
  * Retain query strings across redirects
25
  * Super-fast redirection
26
  * 404 error log
30
  * Fully compatible with translation plugins (Weglot, TranslatePress, Gtranslate, Loco Translate) that use lang prefix in URL
31
 
32
  **Need more features?**
33
+ <a href="https://wp301redirects.com/?ref=wporg">WP 301 Redirects PRO</a> offers wildcard & regular expression URL matching, auto-typo fixing in URLs, complete redirect and 404 log, link scanner, and a centralized SaaS dashboard to monitor redirects on all your sites from one place.
34
 
35
  **What is a 301 Redirect?**
36
  A redirect is a simple way to re-route traffic coming to a *Requested URL* to different *Destination URL*.
40
  [youtube https://www.youtube.com/watch?v=70Yn_lO_8BA]
41
 
42
  **When Should I use 301 Redirects?**
 
43
  * Replacing an old site design with a new site design
44
  * Overhauling or re-organizing your existing WordPress content
45
  * You have content that expires (or is otherwise no longer available) and you wish to redirect users elsewhere
47
  **Is the 404 error log GDPR friendly?**
48
  The 404 error log does not collect user IPs. It collects the following data: timestamp of the event, the (404) URL that was opened, and the user-agent string.
49
 
50
+ **Having problems with SSL? Moving a site from HTTP to HTTPS?**
51
+ Install our free <a href="https://wordpress.org/plugins/wp-force-ssl/">WP Force SSL</a> plugin. It's a great way to enable SSL and fix SSL problems.
52
 
53
+ **External libraries used in the project**
54
  * <a href="https://github.com/donatj/PhpUserAgent">PHP User Agent Parser</a>
55
 
56
 
70
 
71
  == Changelog ==
72
 
73
+ = 2.72 =
74
+ * 2021/11/11
75
+ * security fixes
76
+ * added "Reset Redirect Hits" tool
77
+
78
  = 2.70 =
79
  * 2021/05/01
80
  * 404 error log widget is now visible only to users with manage_options permission
82
 
83
  = 2.67 =
84
  * 2021/03/16
85
+ * fixed a small security issue with redirection
86
 
87
  = 2.66 =
88
  * 2021/02/23
templates/admin-tab-404s.php CHANGED
@@ -43,9 +43,9 @@ require EPS_REDIRECT_PATH . '/libs/UserAgentParser.php';
43
  $agent = '<i>unknown</i>';
44
  }
45
  echo '<tr>';
46
- echo '<td nowrap><abbr title="' . date(get_option('date_format'), $l['timestamp']) . ' @ ' . date(get_option('time_format'), $l['timestamp']) . '">' . human_time_diff(current_time('timestamp'), $l['timestamp']) . ' ago</abbr></td>';
47
- echo '<td><a target="_blank" href="' . $l['url'] . '">' . $l['url'] . '</a></td>';
48
- echo '<td nowrap>' . $agent . '</td>';
49
  echo '<td nowrap><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="404-log-user-location">Available in PRO</a></td>';
50
  echo '<td nowrap><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="404-log-referral-url">Available in PRO</a></td>';
51
  echo '</tr>';
43
  $agent = '<i>unknown</i>';
44
  }
45
  echo '<tr>';
46
+ echo '<td nowrap><abbr title="' . esc_attr(date(get_option('date_format'), $l['timestamp']) . ' @ ' . date(get_option('time_format'), $l['timestamp'])) . '">' . esc_attr(human_time_diff(current_time('timestamp'), $l['timestamp'])) . ' ago</abbr></td>';
47
+ echo '<td><a target="_blank" href="' . esc_attr($l['url']) . '">' . esc_attr($l['url']) . '</a></td>';
48
+ echo '<td nowrap>' . esc_attr($agent) . '</td>';
49
  echo '<td nowrap><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="404-log-user-location">Available in PRO</a></td>';
50
  echo '<td nowrap><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="404-log-referral-url">Available in PRO</a></td>';
51
  echo '</tr>';
templates/admin-tab-error.php CHANGED
@@ -20,7 +20,7 @@ if (!defined('ABSPATH')) {
20
  <?php do_action('eps_redirects_admin_head'); ?>
21
 
22
  <div class="eps-notice eps-warning">
23
- <?php echo $options['description']; ?>
24
  </div>
25
 
26
 
20
  <?php do_action('eps_redirects_admin_head'); ?>
21
 
22
  <div class="eps-notice eps-warning">
23
+ <?php EPS_Redirects::wp_kses_wf($options['description']); ?>
24
  </div>
25
 
26
 
templates/admin-tab-import-export.php CHANGED
@@ -43,6 +43,13 @@ if (!defined('ABSPATH')) {
43
  <input type="submit" name="eps_delete_rules" id="eps_delete_rules" class="button button-secondary" value="Delete all Redirect Rules" />
44
  <p class="eps-grey-text">If you have a lot of rules and don't want to delete them one by one, use this tool. Please be carefull. There is NO UNDO.</p>
45
  </form>
 
 
 
 
 
 
 
46
  </div>
47
 
48
  <div class="eps-panel eps-margin-top">
@@ -57,7 +64,7 @@ if (!defined('ABSPATH')) {
57
  </p>
58
 
59
  <p class="eps-grey-text">Supply Columns: <strong>Status</strong> (301,302,307,inactive), <strong>Request URL</strong>, <strong>Redirect
60
- To</strong> (ID or URL). <a href="<?php echo EPS_REDIRECT_URL . 'misc/example-import.csv' ?>" target="_blank">Download Example CSV</a></p>
61
  </form>
62
  </div>
63
 
43
  <input type="submit" name="eps_delete_rules" id="eps_delete_rules" class="button button-secondary" value="Delete all Redirect Rules" />
44
  <p class="eps-grey-text">If you have a lot of rules and don't want to delete them one by one, use this tool. Please be carefull. There is NO UNDO.</p>
45
  </form>
46
+
47
+ <br>
48
+ <form method="post" action="">
49
+ <?php wp_nonce_field('eps_redirect_nonce', 'eps_redirect_nonce_submit'); ?>
50
+ <input type="submit" name="eps_reset_stats" id="eps_reset_stats" class="button button-secondary" value="Reset Redirect Rules' Hits" />
51
+ <p class="eps-grey-text">Use this tool to reset the hits count on all redirect rules to zero. Redirect rules are NOT affected by this tool, just the hits count. Please be carefull. There is NO UNDO.</p>
52
+ </form>
53
  </div>
54
 
55
  <div class="eps-panel eps-margin-top">
64
  </p>
65
 
66
  <p class="eps-grey-text">Supply Columns: <strong>Status</strong> (301,302,307,inactive), <strong>Request URL</strong>, <strong>Redirect
67
+ To</strong> (ID or URL). <a href="<?php echo esc_attr(EPS_REDIRECT_URL . 'misc/example-import.csv'); ?>" target="_blank">Download Example CSV</a></p>
68
  </form>
69
  </div>
70
 
templates/admin-tab-link-scanner.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ *
4
+ * The Link Scanner Tab.
5
+ *
6
+ * The main admin area for the link scanner tab.
7
+ *
8
+ * @package EPS 301 Redirects
9
+ * @author WebFactory Ltd
10
+ */
11
+
12
+ // include only file
13
+ if (!defined('ABSPATH')) {
14
+ die('Do not open this file directly.');
15
+ }
16
+ ?>
17
+
18
+ <div class="wrap">
19
+ <?php do_action('eps_redirects_admin_head'); ?>
20
+
21
+ <div class="eps-panel eps-margin-top group">
22
+ <h1>Linking to bad, broken &amp; malware infected sites <b>can make your site bad</b> too, for visitors &amp; for SEO.<br>
23
+ But how do you know you're not linking to bad sites? By using the Link Scanner.</h1>
24
+
25
+ <p style="font-size: 14px;">Link Scanner is a unique SaaS tools that's a part of WP 301 Redirects PRO plugin. It'll help you to:</p>
26
+ <ul class="plain-list">
27
+ <li>scan every single link on your site; in posts, pages, CPTs, widgets, header, footers - everywhere</li>
28
+ <li>detect links that are broken &amp; easily fix them</li>
29
+ <li>detect links to pornographic sites, those infected by malware or phishing sites</li>
30
+ <li>check links with Google Safe Browing API</li>
31
+ <li>see <i>rel</i>, <i>target</i> and other link attributes in one place</li>
32
+ <li>get additional data on every link such as the quality of the site it links to</li>
33
+ <li>run automatic scans so you always have fresh data</li>
34
+ <li>scans are done externally by our SaaS so they don't put a strain on your server</li>
35
+ </ul>
36
+ <br>
37
+ <p><a href="#" class="open-301-pro-dialog button button-buy" data-pro-feature="link-scanner">Get WP 301 Redirects PRO with Link Scanner</a></p>
38
+ </div>
39
+
40
+ <div class="right">
41
+ </div>
42
+ <div class="left">
43
+ </div>
44
+ </div>
templates/admin-tab-redirects.php CHANGED
@@ -34,8 +34,8 @@ global $EPS_Redirects_Plugin;
34
  </tr>
35
 
36
  <?php
37
- echo EPS_Redirects::get_inline_edit_entry();
38
- echo EPS_Redirects::list_redirects();
39
  ?>
40
  </table>
41
 
34
  </tr>
35
 
36
  <?php
37
+ EPS_Redirects::wp_kses_wf(EPS_Redirects::get_inline_edit_entry());
38
+ EPS_Redirects::wp_kses_wf(EPS_Redirects::list_redirects());
39
  ?>
40
  </table>
41
 
templates/admin-tab-support.php CHANGED
@@ -34,8 +34,5 @@ if (!defined('ABSPATH')) {
34
  <?php ?>
35
  </div>
36
  <div class="left">
37
- <?php
38
- // do_action('eps_redirects_panels_left');
39
- ?>
40
  </div>
41
  </div>
34
  <?php ?>
35
  </div>
36
  <div class="left">
 
 
 
37
  </div>
38
  </div>
templates/template.redirect-entry-edit-inline.php CHANGED
@@ -19,7 +19,7 @@ if (!defined('ABSPATH')) {
19
  <td colspan="5">
20
  <form id="eps-redirect-save" method="post" action="">
21
  <table class="eps-table">
22
- <tr class="id-<?php echo ($redirect_id) ? $redirect_id : 'new'; ?>">
23
  <?php include(EPS_REDIRECT_PATH . 'templates/template.redirect-entry-edit.php'); ?>
24
  <td class="redirect-actions">
25
  <?php if ($redirect_id) { ?>
19
  <td colspan="5">
20
  <form id="eps-redirect-save" method="post" action="">
21
  <table class="eps-table">
22
+ <tr class="id-<?php echo ($redirect_id) ? esc_attr($redirect_id) : 'new'; ?>">
23
  <?php include(EPS_REDIRECT_PATH . 'templates/template.redirect-entry-edit.php'); ?>
24
  <td class="redirect-actions">
25
  <?php if ($redirect_id) { ?>
templates/template.redirect-entry-edit.php CHANGED
@@ -14,7 +14,7 @@ if (!defined('ABSPATH')) {
14
  $redirect = self::get_redirect($redirect_id);
15
  ?>
16
  <td>
17
- <input type="hidden" type="text" name="redirect[id][]" value="<?php echo ($redirect_id) ? $redirect_id : ''; ?>">
18
 
19
  <select name="redirect[status][]" class="eps-small-select">
20
  <option default value="301" <?php echo ($redirect && $redirect->status == '301') ? 'selected="selected"' : null; ?>>301</option>
@@ -27,5 +27,5 @@ $redirect = self::get_redirect($redirect_id);
27
  <input class="eps-url-input" type="text" name="redirect[url_from][]" value="<?php echo ($redirect) ? esc_attr(stripslashes($redirect->url_from)) : ''; ?>"><br><small>Need wildcard support for matching multiple URLs? Check out the <a href="#" class="open-301-pro-dialog" data-pro-feature="new-rule-wildcard">PRO version.</small>
28
  </td>
29
  <td>
30
- <?php echo eps_get_selector($redirect); ?>
31
  </td>
14
  $redirect = self::get_redirect($redirect_id);
15
  ?>
16
  <td>
17
+ <input type="hidden" type="text" name="redirect[id][]" value="<?php echo ($redirect_id) ? esc_attr($redirect_id) : ''; ?>">
18
 
19
  <select name="redirect[status][]" class="eps-small-select">
20
  <option default value="301" <?php echo ($redirect && $redirect->status == '301') ? 'selected="selected"' : null; ?>>301</option>
27
  <input class="eps-url-input" type="text" name="redirect[url_from][]" value="<?php echo ($redirect) ? esc_attr(stripslashes($redirect->url_from)) : ''; ?>"><br><small>Need wildcard support for matching multiple URLs? Check out the <a href="#" class="open-301-pro-dialog" data-pro-feature="new-rule-wildcard">PRO version.</small>
28
  </td>
29
  <td>
30
+ <?php EPS_Redirects::wp_kses_wf(eps_get_selector($redirect)); ?>
31
  </td>
templates/template.redirect-entry.php CHANGED
@@ -20,33 +20,37 @@ $query_args = array('page' => $EPS_Redirects_Plugin->config('page_slug'), 'delet
20
  <tr class="redirect-entry <?php echo esc_attr($redirect->status); ?> id-<?php echo esc_attr($redirect->id); ?>"
21
  data-id="<?php echo esc_attr($redirect->id); ?>" data-status="<?php echo esc_attr($redirect->status); ?>">
22
  <td>
23
- <p class="eps-grey-text eps-text-center eps-small"><?php echo $redirect->id; ?></p>
24
  </td>
25
  <td>
26
- <a target="_blank" class="eps-url" href="<?php bloginfo('url'); ?>/<?php echo stripslashes(esc_attr($dfrom)); ?>"
27
- title="<?php bloginfo('url'); ?>/<?php echo stripslashes(esc_attr($dfrom)); ?>">
28
- <span class="eps-url-root eps-url-startcap"><?php echo ($redirect->status == 'inactive') ? 'OFF' : esc_attr($redirect->status); ?></span><span
29
- class="eps-url-root"><?php bloginfo('url'); ?>/</span><span class="eps-url-fragment eps-url-endcap"><?php echo stripslashes($dfrom); ?></span>
 
 
 
 
30
  </a>
31
  </td>
32
  <td>
33
- <?php echo eps_get_destination($redirect); ?>
34
  </td>
35
- <td class="redirect-hits" nowrap><strong><?php echo esc_attr(number_format($redirect->count)); ?></strong> <a class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-chart-icon-<?php echo $i; ?>" href="#"><span class="dashicons dashicons-chart-area"></span></a></td>
36
  <td class="redirect-actions">
37
  <a class="button eps-redirect-edit" href="#eps-redirect-edit" data-id="<?php echo esc_attr($redirect->id); ?>">Edit</a>
38
- <a class="button eps-redirect-remove" href="<?php echo add_query_arg($query_args, admin_url('/options-general.php')); ?>"
39
  data-id="<?php echo esc_attr($redirect->id); ?>">Delete</a>
40
  </td>
41
  </tr>
42
  <?php
43
  if ($i == 5) {
44
- echo '<tr class="row-banner"><td colspan="5"><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-banner-1"><p><b>Are you tired of adding so many redirect rules one-by-one for each URL?</b><br>
45
- <b>WP 301 Redirects PRO</b> automatically fixes URL typos, has advanced URL matching rules, and watcher over permalink changes so you don\'t have to write so many rules.</p></a></td></tr>';
46
  }
47
 
48
  if ($i == 14) {
49
- echo '<tr class="row-banner"><td colspan="5"><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-banner-2"><p><b>Need a better way to organize &amp; monitor your redirect rules?</b><br>
50
- <b>WP 301 Redirects PRO</b> makes it easy to tag &amp; search rules so it\'s always easy to find them. And with advanced stats for redirects &amp; 404 errors you\'ll always know what\'s going on with your traffic.</p></a></td></tr>';
51
  }
52
  ?>
20
  <tr class="redirect-entry <?php echo esc_attr($redirect->status); ?> id-<?php echo esc_attr($redirect->id); ?>"
21
  data-id="<?php echo esc_attr($redirect->id); ?>" data-status="<?php echo esc_attr($redirect->status); ?>">
22
  <td>
23
+ <p class="eps-grey-text eps-text-center eps-small"><?php echo esc_attr($redirect->id); ?></p>
24
  </td>
25
  <td>
26
+ <a target="_blank" class="eps-url" href="<?php echo esc_attr(get_bloginfo('url')); ?>/<?php echo esc_attr(stripslashes($dfrom)); ?>"
27
+ title="<?php echo esc_attr(get_bloginfo('url')); ?>/<?php echo esc_attr(stripslashes($dfrom)); ?>">
28
+ <span class="eps-url-root eps-url-startcap">
29
+ <?php
30
+ $rstatus = ($redirect->status == 'inactive') ? 'OFF' : $redirect->status;
31
+ echo esc_attr($rstatus);
32
+ ?></span><span
33
+ class="eps-url-root"><?php echo esc_attr(get_bloginfo('url')); ?>/</span><span class="eps-url-fragment eps-url-endcap"><?php echo esc_attr(stripslashes($dfrom)); ?></span>
34
  </a>
35
  </td>
36
  <td>
37
+ <?php echo esc_attr(eps_get_destination($redirect)); ?>
38
  </td>
39
+ <td class="redirect-hits" nowrap><strong><?php echo esc_attr(number_format($redirect->count)); ?></strong> <a class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-chart-icon-<?php echo esc_attr($i); ?>" href="#"><span class="dashicons dashicons-chart-area"></span></a></td>
40
  <td class="redirect-actions">
41
  <a class="button eps-redirect-edit" href="#eps-redirect-edit" data-id="<?php echo esc_attr($redirect->id); ?>">Edit</a>
42
+ <a class="button eps-redirect-remove" href="<?php echo esc_attr(add_query_arg($query_args, admin_url('/options-general.php'))); ?>"
43
  data-id="<?php echo esc_attr($redirect->id); ?>">Delete</a>
44
  </td>
45
  </tr>
46
  <?php
47
  if ($i == 5) {
48
+ EPS_Redirects::wp_kses_wf('<tr class="row-banner"><td colspan="5"><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-banner-1"><p><b>Are you tired of adding so many redirect rules one-by-one for each URL?</b><br>
49
+ <b>WP 301 Redirects PRO</b> automatically fixes URL typos, has advanced URL matching rules, and watcher over permalink changes so you don\'t have to write so many rules.</p></a></td></tr>');
50
  }
51
 
52
  if ($i == 14) {
53
+ EPS_Redirects::wp_kses_wf('<tr class="row-banner"><td colspan="5"><a href="#" class="open-301-pro-dialog pro-feature" data-pro-feature="redirect-rules-banner-2"><p><b>Need a better way to organize &amp; monitor your redirect rules?</b><br>
54
+ <b>WP 301 Redirects PRO</b> makes it easy to tag &amp; search rules so it\'s always easy to find them. And with advanced stats for redirects &amp; 404 errors you\'ll always know what\'s going on with your traffic.</p></a></td></tr>');
55
  }
56
  ?>
wf-flyout/wf-flyout.php CHANGED
@@ -112,7 +112,7 @@ if (false == class_exists('wf_flyout')) {
112
  $out .= $this->config['custom_css'];
113
  $out .= '</style>';
114
 
115
- echo $out;
116
  } // admin_head
117
 
118
 
@@ -161,7 +161,7 @@ if (false == class_exists('wf_flyout')) {
161
 
162
  $out .= '</div>'; // #wf-flyout
163
 
164
- echo $out;
165
  } // admin_footer
166
  } // wf_flyout
167
  } // if class exists
112
  $out .= $this->config['custom_css'];
113
  $out .= '</style>';
114
 
115
+ EPS_Redirects::wp_kses_wf($out);
116
  } // admin_head
117
 
118
 
161
 
162
  $out .= '</div>'; // #wf-flyout
163
 
164
+ EPS_Redirects::wp_kses_wf($out);
165
  } // admin_footer
166
  } // wf_flyout
167
  } // if class exists