Browse
For agents
About
Redirection
/
4.3.1
Redirection
v4.3.1
Switch version
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
Overview
Code
redirection
/
actions
/
nothing.php
nothing.php
in Redirection 4.3.1, at actions/nothing.php
12 lines
228 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
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