API15

Difference between revisions of "JURI/current"

From Joomla! Documentation

< API15:JURI
(New page: ===Description=== Returns the URL for the request, minus the query <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<now...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JURI/current|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JURI/current}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 38: Line 38:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JURI/current|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JURI/current}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 53: Line 53:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:55, 12 May 2013

The "API15" 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]

Returns the URL for the request, minus the query

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

current()


Returns[edit]

string

Defined in[edit]

libraries/joomla/environment/uri.php

Importing[edit]

jimport( 'joomla.environment.uri' );

Source Body[edit]

function current()
{
        static $current;

        // Get the current URL
        if (!isset($current))
        {
                $uri     = & JURI::getInstance();
                $current = $uri->toString( array('scheme', 'host', 'port', 'path'));
        }

        return $current;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />