PluginProbe
Redirection / 2.3.9
Redirection v2.3.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 / module_edit.php

module_edit.php in Redirection 2.3.9, at view/admin/module_edit.php

29 lines 1.0 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="70"><?php _e ('Name', 'redirection'); ?>:</th>
5 <td><input style="width: 95%" type="text" name="name" value="<?php echo esc_attr( $module->get_name() ) ?>"/></td>
6 </tr>
7
8 <?php $module->config(); ?>
9
10 <tr>
11 <th width="70"></th>
12 <td>
13 <div class="table-actions">
14 <input class="button-primary" type="submit" name="save" value="<?php _e ('Save', 'redirection'); ?>"/>
15 <input class="button-secondary" type="submit" name="cancel" value="<?php _e ('Cancel', 'redirection'); ?>"/>
16
17 <input type="hidden" name="action" value="red_module_save"/>
18 <input type="hidden" name="id" value="<?php echo esc_attr( $module->get_id() ); ?>"/>
19 <input type="hidden" name="_ajax_nonce" value="<?php echo wp_create_nonce ('red_module_save_'.$module->get_id() ); ?>"/>
20 </div>
21
22 <div class="table-loading">
23 <div class="spinner"></div>
24 </div>
25 </td>
26 </tr>
27 </table>
28 </div>
29