Back to SiteApplication class

Method getPathway

public \Joomla\CMS\Pathway\Pathway
getPathway
(mixed $name = 'site', mixed $options = array())
Return a reference to the Pathway object.
Parameters
  • string $name The name of the application.
  • array $options An optional associative array of configuration settings.
Returns
  • \Joomla\CMS\Pathway\Pathway A Pathway object
Since
  • 3.2

Method getPathway - Source code

/**
 * Return a reference to the Pathway object.
 *
 * @param   string  $name     The name of the application.
 * @param   array   $options  An optional associative array of configuration settings.
 *
 * @return  Pathway  A Pathway object
 *
 * @since   3.2
 */
public function getPathway($name = 'site', $options = array())
{
    return parent::getPathway($name, $options);
}