Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function init() |
||
13 | { |
||
14 | parent::init(); |
||
15 | |||
16 | // Check we don't already have a redirect code set |
||
17 | /** @var RedirectorPage $page */ |
||
18 | $page = $this->data(); |
||
19 | if (!$this->getResponse()->isFinished() && $link = $page->redirectionLink()) { |
||
20 | $this->redirect($link, 301); |
||
21 | } |
||
22 | } |
||
23 | |||
34 |