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 / log.php

log.php in Redirection 2.6.3, at view/log.php

25 lines 699 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 echo esc_html( $title ); ?></h2>
4
5 <?php $this->render( 'submenu', array( 'options' => $options ) ); ?>
6
7 <div id="react-ui">
8 <noscript>Please enable JavaScript</noscript>
9 </div>
10 </div>
11
12 <script>
13 var Redirection_Adder, Redirection_Logger;
14
15 addLoadEvent( function() {
16 Redirection_Logger = new Redirection_Logs( jQuery, '#add', '#added', '#old' );
17 Redirection_Adder = new Redirection_Add( jQuery, '#target', false );
18
19 Redirection_Adder.setup( 'select[name=red_action]', '#add' );
20 redirection.show( 'react-ui' );
21 } );
22 </script>
23
24 <?php $this->render( 'add', array( 'hidden' => true ) ); ?>
25