API16

API16:JInstaller/getPath

From Joomla! Documentation

Description

Get an installer path by name


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

Syntax

getPath($name, $default=null)
Parameter Name Default Value Description
$name $name Path name
$default null $default Default value

Returns

string Path

Defined in

libraries/joomla/installer/installer.php

Importing

jimport( 'joomla.installer.installer' );

Source Body

public function getPath($name, $default=null)
{
        return (!empty($this->_paths[$name])) ? $this->_paths[$name] : $default;
}


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

Examples

Code Examples