PluginProbe
Redirection / 2.6.1
Redirection v2.6.1
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.6.1, at view/module-list.php

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