API15

JApplication/getPathway

From Joomla! Documentation

< API15:JApplication

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]

Return a reference to the application JPathway object.


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

Syntax[edit]

& getPathway($name=null, $options=array())
Parameter Name Default Value Description
$name null $options An optional associative array of configuration settings.
$options array()

Returns[edit]

object .

Defined in[edit]

libraries/joomla/application/application.php

Importing[edit]

jimport( 'joomla.application.application' );

Source Body[edit]

function &getPathway($name = null, $options = array())
{
        if(!isset($name)) {
                $name = $this->_name;
        }

        jimport( 'joomla.application.pathway' );
        $pathway =& JPathway::getInstance($name, $options);
        if (JError::isError($pathway)) {
                $null = null;
                return $null;
        }
        return $pathway;
}


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

Examples[edit]

Code Examples[edit]