Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function smartGoBack() |
||
22 | { |
||
23 | // Current action is delete |
||
24 | if (preg_match('@(.*)/delete$@', Yii::$app->request->pathInfo, $res)) { |
||
25 | $controller = $res[1]; |
||
26 | // Referer is view of deleted item |
||
27 | if (preg_match('@'.$controller.'/view@', Yii::$app->request->referrer)) { |
||
28 | return $this->redirect([$controller.'/index']); |
||
29 | } |
||
30 | } |
||
31 | |||
32 | return $this->redirect(Yii::$app->request->referrer); |
||
33 | } |
||
34 | } |
||
35 |