API15:JUser
From Joomla! Documentation
Defined in
libraries/joomla/user/user.php
Methods
| Method name | Description |
|---|---|
| __construct | Constructor activating the default information of the language |
| getInstance | Returns a reference to the global User object, only creating it if it doesn't already exist. |
| getParam | Method to get a parameter value |
| setParam | Method to set a parameter |
| defParam | Method to set a default parameter if it does not exist |
| authorize | Method to check JUser object authorization against an access control object and optionally an access extension object |
| setLastVisit | Pass through method to the table for setting the last visit date |
| getParameters | Method to get the user parameters |
| setParameters | Method to get the user parameters |
| getTable | Method to get the user table object |
| bind | Method to bind an associative array of data to a user object |
| save | Method to save the JUser object to the database |
| delete | Method to delete the JUser object from the database |
| load | Method to load a JUser object by user id number |
Importing
jimport( 'joomla.user.user' );
Examples
Code Examples