PluginProbe
Redirection / 2.3.13
Redirection v2.3.13
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 / item_edit.php

item_edit.php in Redirection 2.3.13, at view/admin/item_edit.php

41 lines 1.6 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 class="edit" data-url="<?php echo admin_url( 'admin-ajax.php' ) ?>">
3 <tr>
4 <th width="100"><a target="_blank" href="<?php echo esc_url( $redirect->url ) ?>"><?php _e( 'Source URL', 'redirection' ); ?>:</a></th>
5 <td>
6 <input style="width: 85%" type="text" name="old" value="<?php echo esc_attr( $redirect->url ); ?>" id="original"/>
7 <label><?php _e( 'Regex', 'redirection' ); ?>: <input type="checkbox" name="regex" <?php if ( $redirect->regex == true ) echo ' checked="checked"' ?>/></label>
8
9 <a href="#" class="advanced-toggle">&#9881;</a>
10 </td>
11 </tr>
12 <tr class="advanced">
13 <th width="100"><?php _e ('Description', 'redirection'); ?>:</th>
14 <td>
15 <input style="width: 85%" type="text" name="title" value="<?php echo esc_attr( $redirect->title ); ?>"/>
16 <span class="sub">(<?php _e( "optional", 'redirection' ); ?>)</span>
17 </td>
18 </tr>
19
20 <?php $redirect->match->show(); ?>
21
22 <tr>
23 <th></th>
24 <td>
25 <div class="table-actions">
26 <input class="button-primary" type="submit" name="save" value="<?php _e( 'Save', 'redirection' ); ?>"/>
27 <input class="button-secondary" type="submit" name="cancel" value="<?php _e( 'Cancel', 'redirection' ); ?>"/>
28
29 <input type="hidden" name="action" value="red_redirect_save"/>
30 <input type="hidden" name="id" value="<?php echo esc_attr( $redirect->id ); ?>"/>
31 <?php wp_nonce_field( 'redirection-redirect_save_'.$redirect->id ) ?>
32
33 <span id="info_<?php echo esc_attr( $redirect->id ) ?>"></span>
34 </div>
35 <div class="table-loading">
36 <div class="spinner"></div>
37 </div>
38 </td>
39 </tr>
40 </table>
41