Prado\Web\THttpSession::open PHP Метод

open() публичный Метод

Starts the session if it has not started yet.
public open ( )
    public function open()
    {
        if (!$this->_started) {
            if ($this->_customStorage) {
                session_set_save_handler(array($this, '_open'), array($this, '_close'), array($this, '_read'), array($this, '_write'), array($this, '_destroy'), array($this, '_gc'));
            }
            if ($this->_cookie !== null) {
                session_set_cookie_params($this->_cookie->getExpire(), $this->_cookie->getPath(), $this->_cookie->getDomain(), $this->_cookie->getSecure(), $this->_cookie->getHttpOnly());
            }
            if (ini_get('session.auto_start') !== '1') {
                session_start();
            }
            $this->_started = true;
        }
    }