API16:JApplicationHelper/addClientInfo
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Adds information for a client.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
static addClientInfo($client)
| Parameter Name | Default Value | Description |
|---|---|---|
| $client | A client identifier either an array or object |
Returns
boolean True if the information is added. False on error
Defined in
libraries/joomla/application/helper.php
Importing
jimport( 'joomla.application.helper' );
Source Body
public static function addClientInfo($client) { if (is_array($client)) { $client = (object) $client; } if (!is_object($client)) { return false; } $info = &self::getClientInfo(); if (!isset($client->id)) { $client->id = count($info); } $info[$client->id] = clone $client; return true; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
