API15

JSession/restart

From Joomla! Documentation

< API15:JSession
Revision as of 20:06, 24 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

restart an expired or locked session

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

restart()


Returns[edit]

boolean $result true on success

Defined in[edit]

libraries/joomla/session/session.php

Importing[edit]

jimport( 'joomla.session.session' );

Source Body[edit]

function restart()
{
        $this->destroy();
        if( $this->_state !==  'destroyed' ) {
                // @TODO :: generated error here
                return false;
        }

        // Re-register the session handler after a session has been destroyed, to avoid PHP bug
        $this->_store->register();

        $this->_state   =   'restart';
        //regenerate session id
        $id     =       $this->_createId( strlen( $this->getId() ) );
        session_id($id);
        $this->_start();
        $this->_state   =       'active';

        $this->_validate();
        $this->_setCounter();

        return true;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]