API15

JSessionStorageXcache/open

From Joomla! Documentation

< API15:JSessionStorageXcache
Revision as of 17:13, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Open the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowik...)
(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]

Open the SessionHandler backend.

[Edit Descripton]

Template:Description:JSessionStorageXcache/open

Syntax[edit]

open($save_path, $session_name)
Parameter Name Default Value Description
$save_path $save_path The path to the session object.
$session_name $session_name The name of the session.

Returns[edit]

boolean True on success, false otherwise.

Defined in[edit]

libraries/joomla/session/storage/xcache.php

Importing[edit]

jimport( 'joomla.session.storage.xcache' );

Source Body[edit]

function open($save_path, $session_name)
{
        return true;
}

[Edit See Also] Template:SeeAlso:JSessionStorageXcache/open

Examples[edit]

<CodeExamplesForm />