Back to FileLayout class

Method setIncludePaths

public self
setIncludePaths
(mixed $paths)
Set the include paths to search for layouts
Parameters
  • array $paths Array with paths to search in
Returns
  • self
Since
  • 3.5
Class: FileLayout
Project: Joomla

Method setIncludePaths - Source code

/**
 * Set the include paths to search for layouts
 *
 * @param   array  $paths  Array with paths to search in
 *
 * @return  self
 *
 * @since   3.5
 */
public function setIncludePaths($paths)
{
    $this->includePaths = (array) $paths;
    return $this;
}