| 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 |
|