當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TSession::freeSession方法代碼示例

本文整理匯總了PHP中TSession::freeSession方法的典型用法代碼示例。如果您正苦於以下問題:PHP TSession::freeSession方法的具體用法?PHP TSession::freeSession怎麽用?PHP TSession::freeSession使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TSession的用法示例。


在下文中一共展示了TSession::freeSession方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct()
 {
     TSession::freeSession();
     parent::__construct();
     $this->setTitle("Login");
     $this->setSize(300, 200);
     $this->form = new TQuickForm('login');
     $login = new TEntry('user');
     $senha = new TPassword('senha');
     $this->form->addQuickField('Login', $login, 200, new TRequiredValidator());
     $this->form->addQuickField('Senha', $senha, 200, new TRequiredValidator());
     $this->form->addQuickAction('Logar', new TAction(array($this, 'logar')));
     parent::add($this->form);
 }
開發者ID:jhonleandres,項目名稱:pecommerce,代碼行數:14,代碼來源:FormLogar.class.php

示例2: __construct

 public function __construct()
 {
     $session = new TSession(0);
     $session->freeSession();
 }
開發者ID:GroupSofter,項目名稱:ImoveisVieiraERodrigues,代碼行數:5,代碼來源:logoff.php

示例3: onLogout

 /**
  * Logout
  */
 public static function onLogout()
 {
     if (TSession::getValue('id_login')) {
         try {
             TTransaction::open('atividade');
             $registroLogin = new RegistroLogin(TSession::getValue('id_login'));
             $registroLogin->hora_final = date('H:i:s');
             $registroLogin->store();
             TTransaction::close();
         } catch (Exception $e) {
             new TMessage('error', $e->getMessage());
         }
     }
     TSession::freeSession();
     TApplication::gotoPage('LoginForm', '');
 }
開發者ID:jhonleandres,項目名稱:Atividades,代碼行數:19,代碼來源:LoginForm.class.php

示例4: onLogout

 /**
  * Logout
  */
 function onLogout()
 {
     TSession::freeSession();
     TApplication::gotoPage('LoginForm', '');
 }
開發者ID:eduardojsouza,項目名稱:liger,代碼行數:8,代碼來源:LoginForm.class.php

示例5: logout

 public static function logout()
 {
     TSession::freeSession();
     TCoreApplication::executeMethod('FormLogar');
 }
開發者ID:jhonleandres,項目名稱:pecommerce,代碼行數:5,代碼來源:Usuario.class.php

示例6: logout

 public function logout()
 {
     TSession::freeSession();
     TCoreApplication::executeMethod('Home');
 }
開發者ID:jhonleandres,項目名稱:pecommerce,代碼行數:5,代碼來源:ClienteLogin.class.php

示例7: onLogout

 /**
  * Logout
  */
 public static function onLogout()
 {
     SystemAccessLog::registerLogout();
     TSession::freeSession();
     TApplication::gotoPage('LoginForm', '');
 }
開發者ID:edurbs,項目名稱:sobcontrole,代碼行數:9,代碼來源:LoginForm.class.php

示例8: logout

 public function logout()
 {
     TSession::freeSession();
     AdiantiCoreApplication::gotoPage('Home');
 }
開發者ID:cbsistem,項目名稱:livro_adianti_3_0,代碼行數:5,代碼來源:Home.class.php


注:本文中的TSession::freeSession方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。