API16:JInstaller/setPath
From Joomla! Documentation
Description
Sets an installer path by name
Template:Description:JInstaller/setPath
Syntax
setPath($name, $value)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | $name Path name | |
| $value | $value Path |
Returns
void
Defined in
libraries/joomla/installer/installer.php
Importing
jimport( 'joomla.installer.installer' );
Source Body
public function setPath($name, $value)
{
$this->_paths[$name] = $value;
}
[Edit See Also] Template:SeeAlso:JInstaller/setPath
Examples
<CodeExamplesForm />