PHP Class ManaPHP\Renderer

Inheritance: extends Component, implements manaphp\RendererInterface
Datei anzeigen Open project: manaphp/manaphp

Protected Properties

Property Type Description
$_engines array
$_resolved ManaPHP\Renderer\EngineInterface[]
$_sectionStack array
$_sections array

Public Methods

Method Description
__construct ( array $engines = ['.sword' => 'ManaPHP\Renderer\Engine\Sword', '.phtml' => 'ManaPHP\Renderer\Engine\Php'] ) Renderer constructor.
appendSection ( ) : void
escape ( string $v ) : string
exists ( string $template ) : boolean
getSection ( string $section, string $default = '' ) : string Get the string contents of a section.
partial ( string $path, array $vars = [] ) : void
render ( string $template, array $vars = [], boolean $directOutput = false ) : string Checks whether $template exists on registered extensions and render it
startSection ( string $section ) : void Start injecting content into a section.
stopSection ( boolean $overwrite = false ) : void Stop injecting content into a section.

Method Details

__construct() public method

Renderer constructor.
public __construct ( array $engines = ['.sword' => 'ManaPHP\Renderer\Engine\Sword', '.phtml' => 'ManaPHP\Renderer\Engine\Php'] )
$engines array

appendSection() public method

public appendSection ( ) : void
return void

escape() public method

public escape ( string $v ) : string
$v string
return string

exists() public method

public exists ( string $template ) : boolean
$template string
return boolean

getSection() public method

Get the string contents of a section.
public getSection ( string $section, string $default = '' ) : string
$section string
$default string
return string

partial() public method

public partial ( string $path, array $vars = [] ) : void
$path string
$vars array
return void

render() public method

Checks whether $template exists on registered extensions and render it
public render ( string $template, array $vars = [], boolean $directOutput = false ) : string
$template string
$vars array
$directOutput boolean
return string

startSection() public method

Start injecting content into a section.
public startSection ( string $section ) : void
$section string
return void

stopSection() public method

Stop injecting content into a section.
public stopSection ( boolean $overwrite = false ) : void
$overwrite boolean
return void

Property Details

$_engines protected_oe property

protected array $_engines
return array

$_resolved protected_oe property

protected EngineInterface[],ManaPHP\Renderer $_resolved
return ManaPHP\Renderer\EngineInterface[]

$_sectionStack protected_oe property

protected array $_sectionStack
return array

$_sections protected_oe property

protected array $_sections
return array