Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
33 | protected function getReferer( Command $command ) |
||
34 | { |
||
35 | $referer = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ))); |
||
36 | if( empty( $referer )) { |
||
37 | $referer = $command->referer; |
||
38 | } |
||
39 | if( empty( $referer )) { |
||
40 | glsr_log()->warning( 'The form referer ($_SERVER[REQUEST_URI]) was empty.' )->info( $command ); |
||
41 | $referer = home_url(); |
||
42 | } |
||
43 | return $referer; |
||
44 | } |
||
46 |