コード例 #1
0
ファイル: MoveWidgetPage.php プロジェクト: rutgerkok/rCMS
 public function modifyResponse(ResponseInterface $response)
 {
     if ($this->redirectUrl != null) {
         $response = Responses::withTemporaryRedirect($response, $this->redirectUrl);
     }
     return $response;
 }
コード例 #2
0
ファイル: AddCommentPage.php プロジェクト: rutgerkok/rCMS
 public function modifyResponse(ResponseInterface $response)
 {
     if ($this->redirectLink !== null) {
         return Responses::withTemporaryRedirect($response, $this->redirectLink);
     }
     return $response;
 }