API16

JUser/load

From Joomla! Documentation

< API16:JUser

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Method to load a JUser object by user id number



Syntax[edit]

load($id)
Parameter Name Default Value Description
$id $identifier The user id of the user to load

Returns[edit]

boolean True on success

Defined in[edit]

libraries/joomla/user/user.php

Importing[edit]

jimport( 'joomla.user.user' );

Source Body[edit]

function load($id)
{
        // Create the user table object
        $table  = &$this->getTable();

        // Load the JUserModel object based on the user id or throw a warning.
        if (!$table->load($id)) {
                JError::raiseWarning('SOME_ERROR_CODE', 'JUser::_load: Unable to load user with id: '.$id);
                return false;
        }

        /*
         * Set the user parameters using the default xml file.  We might want to
         * extend this in the future to allow for the ability to have custom
         * user parameters, but for right now we'll leave it how it is.
         */
        $this->_params->loadJSON($table->params);

        // Assuming all is well at this point lets bind the data
        $this->setProperties($table->getProperties());

        return true;
}



Examples[edit]

Code Examples[edit]