JSession:: setOptions: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
m preparing for archive only |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
=={{JVer|11.1}} JSession::_setOptions== | =={{JVer|11.1}} JSession::_setOptions== | ||
===Description=== | ===Description=== | ||
Set additional session options. | |||
<source lang="php"> | <source lang="php"> | ||
protected | protected function _setOptions (&$options) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 22: | Line 19: | ||
|array | |array | ||
| | | | ||
|list of parameter | |list of parameter | ||
|- | |- | ||
|} | |} | ||
* '''Returns''' boolean true on success | |||
boolean true on success | * '''Defined''' on line 651 of libraries/joomla/session/session.php | ||
libraries/joomla/session/session.php | |||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JSession::_setOptions source code''' on [[jplatform:session/session.php#cl-643|BitBucket]] | |||
* {{JVer|11.1}} Class [[API17:JSession|JSession]] | |||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | |||
* | * [[API17:JSession::_setOptions|Other versions of JSession::_setOptions]] | ||
* [[JSession::_setOptions|Other versions of | |||
===Examples=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSession::_setOptions | category=JSession::_setOptions | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category: | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> |
Latest revision as of 03:38, 25 March 2017
JSession::_setOptions
Description
Set additional session options.
protected function _setOptions (&$options)
Parameter | Type | Default | Description |
---|---|---|---|
&$options | array | list of parameter |
- Returns boolean true on success
- Defined on line 651 of libraries/joomla/session/session.php
See also
JSession::_setOptions source code on BitBucket
Class JSession
Subpackage Session
- Other versions of JSession::_setOptions
User contributed notes
Code Examples