PHP Class Box\Brainy\Templates\Template

Inheritance: extends TemplateBase
Afficher le fichier Open project: box/brainy Class Usage Examples

Méthodes publiques

Свойство Type Description
$compile_id string $compile_id
$compiled
$properties array special compiled template properties
$required_plugins array required plugins
$source
$template_resource string Full template resource

Méthodes publiques

Méthode Description
__construct ( string $tplResource, Box\Brainy\Brainy $brainy, Template $parent = null, mixed $compileID = null, boolean | void $suppressData = false ) Create template data object
compileTemplateSource ( ) : string Compiles the template
createTemplateCodeFrame ( string $content = '' ) : string Create code frame for compiled and cached templates
decodeProperties ( array $properties ) : boolean This function is executed automatically when a compiled or cached template file is included
getScopePointer ( integer $scope ) : mixed Get parent or root of template parent chain
mustCompile ( ) : boolean Returns if the current template must be compiled by the Smarty compiler
recompileAndLoadCopy ( ) : void Recompiles the template and also writes a copy of the compiled code to a temporary destination to load from. This is so that stale compiled code will be refreshed in HHVM, which does not support requiring the same file twice even if it has been changed.
writeFile ( string $_filepath, string $_contents, Box\Brainy\Brainy $smarty ) : boolean Writes file in a safe way to disk

Method Details

__construct() public méthode

Some of the global Smarty settings copied to template scope It load the required template resources and cacher plugins
public __construct ( string $tplResource, Box\Brainy\Brainy $brainy, Template $parent = null, mixed $compileID = null, boolean | void $suppressData = false )
$tplResource string template resource string
$brainy Box\Brainy\Brainy Brainy instance
$parent Template back pointer to parent object with variables or null
$compileID mixed compile id or null
$suppressData boolean | void Prevents data from being copied into the variable scope

compileTemplateSource() public méthode

Compiles the template
public compileTemplateSource ( ) : string
Résultat string The compiled template source

createTemplateCodeFrame() public méthode

Create code frame for compiled and cached templates
public createTemplateCodeFrame ( string $content = '' ) : string
$content string optional template content
Résultat string

decodeProperties() public méthode

This function is executed automatically when a compiled or cached template file is included
public decodeProperties ( array $properties ) : boolean
$properties array special template properties
Résultat boolean flag if compiled or cache file is valid

getScopePointer() public méthode

Get parent or root of template parent chain
public getScopePointer ( integer $scope ) : mixed
$scope integer pqrent or root scope
Résultat mixed object

mustCompile() public méthode

It does compare the timestamps of template source and the compiled templates
public mustCompile ( ) : boolean
Résultat boolean true if the template must be compiled

recompileAndLoadCopy() public méthode

Recompiles the template and also writes a copy of the compiled code to a temporary destination to load from. This is so that stale compiled code will be refreshed in HHVM, which does not support requiring the same file twice even if it has been changed.
public recompileAndLoadCopy ( ) : void
Résultat void

writeFile() public static méthode

Writes file in a safe way to disk
public static writeFile ( string $_filepath, string $_contents, Box\Brainy\Brainy $smarty ) : boolean
$_filepath string complete filepath
$_contents string file content
$smarty Box\Brainy\Brainy smarty instance
Résultat boolean true

Property Details

$compile_id public_oe property

$compile_id
public string $compile_id
Résultat string

$compiled public_oe property

public $compiled

$properties public_oe property

special compiled template properties
public array $properties
Résultat array

$required_plugins public_oe property

required plugins
public array $required_plugins
Résultat array

$source public_oe property

public $source

$template_resource public_oe property

Full template resource
public string $template_resource
Résultat string