JURI/getUser
From Joomla! Documentation
< API16:JURI
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.
Contents
Description
Get URI username returns the username, or null if no username was specified.
Syntax
getUser()
Returns
string The URI username.
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
public function getUser()
{
return $this->_user;
}