コード例 #1
0
ファイル: session.php プロジェクト: radig/CakeMongoSession
 /**
  * Starts Session on if 'Session.start' is set to false in core.php
  *
  * @param string $base The base path for the Session
  * @return void
  * @access public
  */
 public function activate($base = null)
 {
     if ($this->__active === true) {
         return;
     }
     parent::__construct($base);
     $this->__active = true;
 }