API16

JSession/getExpire: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Get expiration time in minutes <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowik...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Get expiration time in minutes
Get expiration time in minutes


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JSession/getExpire|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JSession/getExpire}}
 
 


===Syntax===
===Syntax===
Line 28: Line 26:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSession/getExpire|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JSession/getExpire}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getExpire
  category=getExpire
  category=JSession
  category=JSession
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 02:03, 25 March 2017

Description

Get expiration time in minutes



Syntax

getExpire()


Returns

integer The session expiration time in minutes

Defined in

libraries/joomla/session/session.php

Importing

jimport( 'joomla.session.session' );

Source Body

public function getExpire()
{
        return $this->_expire;
}



Examples

Code Examples