PHP Class Tale\Jade\Renderer\AdapterBase

Provides some requirements for the renderer adapters. The key is the ->render() method with actually does the rendering.
Inheritance: use trait Tale\ConfigurableTrait
Datei anzeigen Open project: talesoft/tale-jade Class Usage Examples

Public Methods

Method Description
__construct ( Renderer $renderer, array $options = null ) Creates a new adapter.
getRenderer ( ) : Renderer Returns the attached renderer this adapter was created in.
render ( string $path, array $args = null ) : string Renders a jade file by a given path.

Method Details

__construct() public method

If you create a child-adapter, make sure to set your default options correctly Something along these lines: parent::__construct($renderer, array_replace_recursive([ 'your' => 'default', 'option' => 'array' ], $options ? $options : []);
public __construct ( Renderer $renderer, array $options = null )
$renderer Tale\Jade\Renderer the renderer this adapter is created in
$options array the options array for the adapter

getRenderer() public method

Returns the attached renderer this adapter was created in.
public getRenderer ( ) : Renderer
return Tale\Jade\Renderer

render() abstract public method

The extension can be omitted if it's the extension set in the Compiler-options ('.jade' by default) The given $args-argument should be an associative array and will be passed as variables that you can use inside the rendered template file Notice that the path is relative to the Compiler-option 'paths' or, if no paths passed, the paths in get_include_path() You might just echo the result, cache it or do anything else with it
abstract public render ( string $path, array $args = null ) : string
$path string the relative path to be rendered
$args array the variables for the template
return string the rendered markup