restart() static public method

Destroys a session first and then starts it again
static public restart ( )
コード例 #1
0
ファイル: auth.php プロジェクト: LucasFyl/korakia
 public function logout()
 {
     s::restart();
     if ($user = panel()->site()->user()) {
         $user->logout();
     }
     go(panel()->urls()->login());
 }
コード例 #2
0
ファイル: testcase.php プロジェクト: nsteiner/kdoc
 protected function tearDown()
 {
     s::restart();
     // clean all triggers
     kirby::$triggered = array();
     kirby::$hooks = array();
     $this->removeContent();
     $this->removeAccounts();
 }
コード例 #3
0
 protected static function kill()
 {
     self::$user = null;
     // overwrite the token
     $token = str::random();
     // the cookie is valid for 24 hours
     cookie::set('authFrontend', $token, 60 * 60 * 24);
     // restart the session
     s::restart();
 }
コード例 #4
0
 function logout()
 {
     // overwrite the token
     $token = str::random();
     // the cookie is valid for 24 hours
     cookie::set('auth', $token, 60 * 60 * 24);
     // restart the session
     s::restart();
     // go to the homepage
     go(url());
 }
コード例 #5
0
ファイル: testcase.php プロジェクト: ssigur/portfolio-2015
 protected function tearDown()
 {
     s::restart();
     $this->removeContent();
     $this->removeAccounts();
 }