JSessionStorageApc/ construct
From Joomla! Documentation
< API16:JSessionStorageApc
The "API16" 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]
Constructor
Syntax[edit]
__construct($options=array())
Parameter Name | Default Value | Description |
---|---|---|
$options | array() | $options optional parameters |
Defined in[edit]
libraries/joomla/session/storage/apc.php
Importing[edit]
jimport( 'joomla.session.storage.apc' );
Source Body[edit]
function __construct($options = array())
{
if (!$this->test()) {
return JError::raiseError(404, "THE_APC_EXTENSION_IS_NOT_AVAILABLE");
}
parent::__construct($options);
}
Examples[edit]
Code Examples[edit]