PHP Класс Horde_Template, horde

Horde_Template provides a basic template engine with tags, loops, and if conditions. However, it is also a simple interface with several essential functions: set(), fetch(), and parse(). Subclasses or decorators can implement (or delegate) these three methods, plus the options api, and easily implement other template engines (PHP code, XSLT, etc.) without requiring usage changes. Compilation code adapted from code written by Bruno Pedro . Copyright 2002-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Автор: Chuck Hagenbuch ([email protected])
Автор: Michael Slusarz ([email protected])
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$_arrays array Loop tag values.
$_basepath string Directory that templates should be read from.
$_cache Horde_Cache The Horde_Cache object to use.
$_foreachMap array Foreach variable mappings.
$_foreachVar integer Foreach variable incrementor.
$_logger Horde_Log_Logger Logger.
$_options array Option values.
$_pregcache array preg_match() cache.
$_scalars array Tag (scalar) values.
$_template string Template source.
$_templateFile string Path to template source.

Открытые методы

Метод Описание
__construct ( array $params = [] ) Constructor.
fetch ( string $filename = null ) : string Fetches a template from the specified file and return the parsed contents.
get ( string $tag ) : mixed Returns the value of a tag or loop.
getOption ( string $option ) : mixed Returns an option's value.
parse ( string $contents = null ) : string Parses all variables/tags in the template.
set ( string | array $tag, mixed $var ) Sets a tag, loop, or if variable.
setOption ( string $option, mixed $val ) Sets an option.
setTemplate ( string $template ) Set the template contents to a string.

Защищенные методы

Метод Описание
_doReplace ( $replace ) TODO
_doSearch ( $tag, $key, $noclose = false ) TODO
_generatePHPVar ( $tag, $key ) Output the correct PHP variable string for use in template space.
_parse ( ) Parses all variables/tags in the template.
_parseAssociativeTags ( ) Parse associative tags (i.e. ).
_parseGettext ( ) Parses gettext tags.
_parseIf ( string $key = null ) Parses 'if' statements.
_parseLoop ( string $key = null ) Parses the given array for any loops or other uses of the array.
_parseTags ( string $key = null ) Replaces 'tag' tags with their PHP equivalents.

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( array $params = [] )
$params array The following configuration options:
'basepath' - (string) The directory where templates are read from.
'cacheob' - (Horde_Cache) A caching object used to cache the output.
'logger' - (Horde_Log_Logger) A logger object.

_doReplace() защищенный Метод

TODO
protected _doReplace ( $replace )

_doSearch() защищенный Метод

TODO
protected _doSearch ( $tag, $key, $noclose = false )

_generatePHPVar() защищенный Метод

Output the correct PHP variable string for use in template space.
protected _generatePHPVar ( $tag, $key )

_parse() защищенный Метод

Parses all variables/tags in the template.
protected _parse ( )

_parseAssociativeTags() защищенный Метод

Parse associative tags (i.e. ).
protected _parseAssociativeTags ( )

_parseGettext() защищенный Метод

Parses gettext tags.
protected _parseGettext ( )

_parseIf() защищенный Метод

Parses 'if' statements.
protected _parseIf ( string $key = null )
$key string The key prefix to parse.

_parseLoop() защищенный Метод

Parses the given array for any loops or other uses of the array.
protected _parseLoop ( string $key = null )
$key string The key prefix to parse.

_parseTags() защищенный Метод

Replaces 'tag' tags with their PHP equivalents.
protected _parseTags ( string $key = null )
$key string The key prefix to parse.

fetch() публичный Метод

Fetches a template from the specified file and return the parsed contents.
public fetch ( string $filename = null ) : string
$filename string The file to fetch the template from.
Результат string The parsed template.

get() публичный Метод

Returns the value of a tag or loop.
public get ( string $tag ) : mixed
$tag string The tag name.
Результат mixed The tag value or null if the tag hasn't been set yet.

getOption() публичный Метод

Returns an option's value.
public getOption ( string $option ) : mixed
$option string The option name.
Результат mixed The option's value.

parse() публичный Метод

Parses all variables/tags in the template.
public parse ( string $contents = null ) : string
$contents string The unparsed template.
Результат string The parsed template.

set() публичный Метод

Sets a tag, loop, or if variable.
public set ( string | array $tag, mixed $var )
$tag string | array Either the tag name or a hash with tag names as keys and tag values as values.
$var mixed The value to replace the tag with.

setOption() публичный Метод

Currently available options are:
'debug' - Output debugging information to screen
'forcecompile' - Force a compilation on every page load
'gettext' - Activate gettext detection
        
public setOption ( string $option, mixed $val )
$option string The option name.
$val mixed The option's value.

setTemplate() публичный Метод

Set the template contents to a string.
public setTemplate ( string $template )
$template string The template text.

Описание свойств

$_arrays защищенное свойство

Loop tag values.
protected array $_arrays
Результат array

$_basepath защищенное свойство

Directory that templates should be read from.
protected string $_basepath
Результат string

$_cache защищенное свойство

The Horde_Cache object to use.
protected Horde_Cache $_cache
Результат Horde_Cache

$_foreachMap защищенное свойство

Foreach variable mappings.
protected array $_foreachMap
Результат array

$_foreachVar защищенное свойство

Foreach variable incrementor.
protected int $_foreachVar
Результат integer

$_logger защищенное свойство

Logger.
protected Horde_Log_Logger $_logger
Результат Horde_Log_Logger

$_options защищенное свойство

Option values.
protected array $_options
Результат array

$_pregcache защищенное свойство

preg_match() cache.
protected array $_pregcache
Результат array

$_scalars защищенное свойство

Tag (scalar) values.
protected array $_scalars
Результат array

$_template защищенное свойство

Template source.
protected string $_template
Результат string

$_templateFile защищенное свойство

Path to template source.
protected string $_templateFile
Результат string