Back to FileLayout class

Method removeIncludePath

public self
removeIncludePath
(mixed $path)
Remove one path from the layout search
Parameters
  • string $path The path to remove from the layout search
Returns
  • self
Since
  • 3.2
Class: FileLayout
Project: Joomla

Method removeIncludePath - Source code

/**
 * Remove one path from the layout search
 *
 * @param   string  $path  The path to remove from the layout search
 *
 * @return  self
 *
 * @since   3.2
 */
public function removeIncludePath($path)
{
    $this->removeIncludePaths($path);
    return $this;
}