JURI/base
From Joomla! Documentation
< JURI(Difference between revisions)
m (Added note about $this->baseurl in template files.) |
m (→See also: re-categorisation) |
||
| (One intermediate revision by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | A static method that returns the base URI of the Joomla site. | + | A static method that returns the base URI of the Joomla site. |
===Syntax=== | ===Syntax=== | ||
string base( $pathonly ) | string base( $pathonly ) | ||
| Line 12: | Line 12: | ||
|$pathonly | |$pathonly | ||
|boolean | |boolean | ||
| − | |If '''true''' then only the path to the Joomla site is returned; otherwise the scheme, host and port are prepended to the path. Note that when ''' | + | |If '''true''' then only the path to the Joomla site is returned; otherwise the scheme, host and port are prepended to the path. Note that when '''false''' (default) the URI returned has a trailing "/", but when '''true''' the trailing "/" is omitted. |
|'''false''' | |'''false''' | ||
|} | |} | ||
| Line 31: | Line 31: | ||
* [[JURI/current|JURI::current]] | * [[JURI/current|JURI::current]] | ||
* [[JURI/root|JURI::root]] | * [[JURI/root|JURI::root]] | ||
| − | <noinclude> | + | <noinclude>[[Category:JURI]]</noinclude> |
Revision as of 11:32, 9 August 2012
A static method that returns the base URI of the Joomla site.
Contents |
Syntax
string base( $pathonly )
where:
| Argument | Data type | Description | Default |
|---|---|---|---|
| $pathonly | boolean | If true then only the path to the Joomla site is returned; otherwise the scheme, host and port are prepended to the path. Note that when false (default) the URI returned has a trailing "/", but when true the trailing "/" is omitted. | false |
Note
In a template you can use the shortcut $this->baseurl instead of JURI::base( true ).
Example
In this example, the Joomla site URI is shown with both values of the argument.
echo 'Joomla base URI is ' . JURI::base() . "\n"; echo 'Joomla base URI (path only) is ' . JURI::base( true ) . "\n";
might output
Joomla base URI is http://localhost/joomla/ Joomla base URI (path only) is /joomla