API15

JApplication/getPathway: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 54: Line 54:


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

Latest revision as of 00:16, 25 March 2017

Description

Return a reference to the application JPathway object.


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

Syntax

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

Returns

object .

Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

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

Code Examples