API15

Difference between revisions of "JApplication/route"

From Joomla! Documentation

< API15:JApplication
(New page: ===Description=== Route the application. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </sp...)
 
Line 19: Line 19:
 
===Source Body===
 
===Source Body===
 
<source lang="php">
 
<source lang="php">
public function route()
+
function route()
 
{
 
{
         // Get the full request URI.
+
         // get the full request URI
         $uri   = clone JURI::getInstance();
+
         $uri = clone(JURI::getInstance());
  
         $router = &$this->getRouter();
+
         $router =& $this->getRouter();
 
         $result = $router->parse($uri);
 
         $result = $router->parse($uri);
  
         JRequest::set($result, 'get', false);
+
         JRequest::set($result, 'get', false );
 
 
        // Trigger the onAfterRoute event.
 
        JPluginHelper::importPlugin('system');
 
        $this->triggerEvent('onAfterRoute');
 
 
}
 
}
 
</source>
 
</source>

Revision as of 17:09, 22 March 2010

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]

Route the application.

[Edit Descripton]

Template:Description:JApplication/route

Syntax[edit]

route()


Defined in[edit]

libraries/joomla/application/application.php

Importing[edit]

jimport( 'joomla.application.application' );

Source Body[edit]

function route()
{
        // get the full request URI
        $uri = clone(JURI::getInstance());

        $router =& $this->getRouter();
        $result = $router->parse($uri);

        JRequest::set($result, 'get', false );
}

[Edit See Also] Template:SeeAlso:JApplication/route

Examples[edit]

<CodeExamplesForm />