PluginProbe
Redirection / 2.6.3
Redirection v2.6.3
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 / item-list.php

item-list.php in Redirection 2.6.3, at view/item-list.php

33 lines 896 B
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 <div class="wrap">
3 <h2><?php _e( 'Redirections', 'redirection' ); ?></h2>
4
5 <?php $this->render( 'submenu', array( 'options' => $options ) ); ?>
6
7 <form action="tools.php">
8 <input type="hidden" name="page" value="redirection.php"/>
9
10 <?php $table->search_box( __( 'Search' ), 'search_id' ); ?>
11 </form>
12
13 <form method="POST" action="">
14 <?php $table->display(); ?>
15 </form>
16
17 <div style="clear: both"></div>
18 </div>
19
20 <?php $this->render( 'add', array( 'add_to_screen' => true, 'group' => $group, 'hidden' => false ) ); ?>
21
22 <script type="text/javascript">
23 ( function( $ ) {
24 $( document ).ready( function() {
25 var items = new Redirection_Items( $ );
26 var adder = new Redirection_Add( $, '#target', true );
27
28 adder.setup( 'select[name=red_action]', '#add' );
29 items.setup( 'table.items' );
30 } );
31 } )( jQuery );
32 </script>
33