PluginProbe
Redirection / 2.2.9
Redirection v2.2.9
5.10.0 5.9.0 5.8.1 5.8.0 3.7.2 3.7.3 4.0 4.0.1 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.3 4.3.1 4.3.2 4.3.3 4.4 4.4.1 4.4.2 4.5 4.5.1 4.6.2 4.7.1 All 130 releases
redirection / view / admin / log_item.php

log_item.php in Redirection 2.2.9, at view/admin/log_item.php

23 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?>
2 <td width="16" class="center item">
3 <input type="checkbox" class="check" name="checkall[]" value="<?php echo $log->id ?>"/>
4 </td>
5 <td style="width:9em">
6 <a href="<?php echo admin_url( 'admin-ajax.php' ); ?>?action=red_log_show&amp;id=<?php echo $log->id ?>&amp;_ajax_nonce=<?php echo wp_create_nonce( 'redirection-log_'.$log->id )?>" class="show-log">
7 <?php echo date (str_replace ('F', 'M', get_option ('date_format')), $log->created) ?>
8 </a>
9 </td>
10 <td class="info">
11 <a class="details" href="<?php echo $log->url ?>"><?php echo $log->show_url ($log->url) ?></a>
12 </td>
13 <td>
14 <?php if (strlen ($log->referrer) > 0) : ?>
15 <a href="<?php echo $this->url ($log->referrer) ?>"><?php echo $log->show_url ($log->referrer ()) ?></a>
16 <?php endif; ?>
17 </td>
18 <td style="width:9em" class="center">
19 <a target="_blank" href="<?php echo $lookup.$log->ip ?>"><?php echo htmlspecialchars ($log->ip) ?></a>
20 </td>
21 <td style="width: 16px" class="lastcol">
22 <a href="#add" class="add-log"><img src="<?php echo $this->url () ?>/images/add.png" width="16" height="16" alt="Add"/></a>
23 </td>