API15

JApplication/getClientId: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
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...
 
Doxiki (talk | contribs)
No edit summary
Line 22: Line 22:
===Source Body===
===Source Body===
<source lang="php">
<source lang="php">
public function getClientId()
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.

[Edit Descripton]

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 />