コード例 #1
0
ファイル: Controller.php プロジェクト: hguru/224Civi
 /**
  * function to destroy all the session state of the controller.
  *
  * @access public
  *
  * @return void
  */
 function reset()
 {
     $this->container(TRUE);
     self::$_session->resetScope($this->_scope);
 }
コード例 #2
0
ファイル: Page.php プロジェクト: utkarshsharma/civicrm-core
 /**
  * Destroy all the session state of this page.
  *
  *
  * @return void
  */
 public function reset()
 {
     self::$_session->resetScope($this->_name);
 }