Back to FileLayout class

Method getIncludePaths

public array
getIncludePaths
()
Get the active include paths
Returns
  • array
Since
  • 3.5
Class: FileLayout
Project: Joomla

Method getIncludePaths - Source code

/**
 * Get the active include paths
 *
 * @return  array
 *
 * @since   3.5
 */
public function getIncludePaths()
{
    if (empty($this->includePaths)) {
        $this->includePaths = $this->getDefaultIncludePaths();
    }
    return $this->includePaths;
}