JApplication/getClientId: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Gets the client id of the current running application.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JApplication/getClientId|Edi... |
No edit summary |
||
| Line 22: | Line 22: | ||
===Source Body=== | ===Source Body=== | ||
<source lang="php"> | <source lang="php"> | ||
function getClientId( ) | |||
{ | { | ||
return $this->_clientId; | return $this->_clientId; | ||
Revision as of 22:09, 22 March 2010
Description
Gets the client id of the current running application.
Template:Description:JApplication/getClientId
Syntax
getClientId()
Returns
int A client identifier.
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function getClientId( )
{
return $this->_clientId;
}
[Edit See Also] Template:SeeAlso:JApplication/getClientId
Examples
<CodeExamplesForm />