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_details.php

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

30 lines 1.3 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 <table style="width: 100%">
3 <tr>
4 <th><a href="<?php echo $log->url ?>"><?php _e ('Source URL', 'redirection'); ?>:</a></th>
5 <td><input style="width: 95%" type="text" name="something" readonly="readonly" value="<?php echo htmlspecialchars (urldecode ($log->url)) ?>"/></td>
6 </tr>
7 <?php if ($log->sent_to) : ?>
8 <tr>
9 <th><a href="<?php echo $log->sent_to ?>"><?php _e ('Redirect to', 'redirection'); ?>:</a></th>
10 <td><input style="width: 95%" type="text" name="something" readonly="readonly" value="<?php echo htmlspecialchars ($log->sent_to) ?>"/></td>
11 </tr>
12 <?php endif; ?>
13 <?php if ($redirect && isset($redirect->method) && $redirect->method) : ?>
14 <tr>
15 <th><?php _e ('Redirected by', 'redirection'); ?>:</th>
16 <td><?php echo $redirect->method->name () ?> <?php _e ('for', 'redirection'); ?>: <code><?php echo htmlspecialchars ($redirect->url) ?></code></td>
17 </tr>
18 <?php endif; ?>
19 <tr>
20 <th><?php _e ('User Agent', 'redirection'); ?>:</th>
21 <td><input style="width: 95%" type="text" readonly="readonly" name="other" value="<?php echo htmlspecialchars ($log->agent) ?>"/></td>
22 </tr>
23 <tr>
24 <td></td>
25 <td>
26 <input class="button-secondary" type="submit" name="cancel" value="Cancel"/>
27 </td>
28 </tr>
29 </table>
30