PluginProbe
Redirection / 2.4.5
Redirection v2.4.5
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 / module-list.php

module-list.php in Redirection 2.4.5, at view/module-list.php

23 lines 511 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 <?php screen_icon(); ?>
4
5 <h2><?php _e( 'Modules', 'redirection' ); ?></h2>
6
7 <?php $this->render( 'submenu', array( 'options' => $options ) ); ?>
8
9 <form method="POST" action="">
10 <?php $table->display(); ?>
11 </form>
12 </div>
13
14 <script type="text/javascript">
15 ( function( $ ) {
16 $( document ).ready( function() {
17 var items = new Redirection_Items( $ );
18
19 items.setup( 'table.items' );
20 } );
21 } )( jQuery );
22 </script>
23