コード例 #1
0
ファイル: Controller.php プロジェクト: xinix-technology/bono
 /**
  * [getRedirectUri description]
  * @return [type] [description]
  */
 public function getRedirectUri()
 {
     return URL::redirect($this->getBaseUri());
 }
コード例 #2
0
ファイル: unauthorized.php プロジェクト: reekoheek/bono-auth
<div class="wrapper">
    <p>You are not authorized to access this page, maybe you should login first to access it or you can go back to previous page.</p>
    <div class="row button-form">
        <div class="span-12">
            <div class="row">
                <a href="javascript:history.back()" class="button">Back</a>
                <a href="<?php 
echo URL::site('/login') . '?!continue=' . \Bono\Helper\URL::redirect();
?>
" class="button">Login</a>
            </div>
        </div>
    </div>
</div>
コード例 #3
0
ファイル: Auth.php プロジェクト: reekoheek/bono-auth
 public function getRedirectUri()
 {
     return URL::redirect();
 }