API15

JURI/current: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 43: Line 43:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=current
  category=current
  category=JURI
  category=JURI
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:13, 25 March 2017

Description

Returns the URL for the request, minus the query

[<! removed edit link to red link >]

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

Syntax

current()


Returns

string

Defined in

libraries/joomla/environment/uri.php

Importing

jimport( 'joomla.environment.uri' );

Source Body

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

Code Examples