PluginProbe
Redirection / 4.3
Redirection v4.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 / actions / nothing.php

nothing.php in Redirection 4.3, at actions/nothing.php

12 lines 228 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class Nothing_Action extends Red_Action {
4 public function process_before( $code, $target ) {
5 return apply_filters( 'redirection_do_nothing', false, $target );
6 }
7
8 public function needs_target() {
9 return false;
10 }
11 }
12