Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public function beforeFilter(Event $event) {
  2. if( true ){ //if a sample condition is true
  3. return $this->redirect([
  4. 'controller' => 'test',
  5. 'action' => 'action'
  6. ]);
  7. }
  8.  
  9. public function beforeFilter(Event $event) {
  10. if( true ){ //if a sample condition is true
  11. $url = '/'; //set url here
  12. echo '<script type="text/javascript">';
  13. echo 'window.location="'.$url.'"';
  14. echo '</script>';
  15. exit;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement