Back to Installer class

Method setPath

public void
setPath
(mixed $name, mixed $value)
Sets an installer path by name
Parameters
  • string $name Path name
  • string $value Path
Returns
  • void
Since
  • 3.1
Class: Installer
Project: Joomla

Method setPath - Source code

/**
 * Sets an installer path by name
 *
 * @param   string  $name   Path name
 * @param   string  $value  Path
 *
 * @return  void
 *
 * @since   3.1
 */
public function setPath($name, $value)
{
    $this->paths[$name] = $value;
}