API15:JURI/ construct
From Joomla! Documentation
Description
Constructor. You can pass a URI string to the constructor to initialize a specific URI.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
__construct($uri=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $uri | null | $uri The optional URI string |
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
function __construct($uri = null)
{
if ($uri !== null) {
$this->parse($uri);
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples