mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
7b87a88d16
@ -1,7 +1,7 @@
|
|||||||
Fenom - Template Engine for PHP
|
Fenom - Template Engine for PHP
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
> Composer package: `{"fenom/fenom": "dev-master"}`. See on [Packagist.org](https://packagist.org/packages/fenom/fenom)
|
> Composer package: `{"fenom/fenom": "1.*"}`. See on [Packagist.org](https://packagist.org/packages/fenom/fenom)
|
||||||
|
|
||||||
[![Latest Stable Version](https://poser.pugx.org/fenom/fenom/v/stable.png)](https://packagist.org/packages/fenom/fenom)
|
[![Latest Stable Version](https://poser.pugx.org/fenom/fenom/v/stable.png)](https://packagist.org/packages/fenom/fenom)
|
||||||
[![Build Status](https://travis-ci.org/bzick/fenom.png?branch=master)](https://travis-ci.org/bzick/fenom)
|
[![Build Status](https://travis-ci.org/bzick/fenom.png?branch=master)](https://travis-ci.org/bzick/fenom)
|
||||||
|
@ -5,7 +5,7 @@ For installation use [composer](http://getcomposer.org). Add in your `composer.j
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"require": {
|
"require": {
|
||||||
"fenom/fenom": "dev-master"
|
"fenom/fenom": "1.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
Settings [RU]
|
Settings
|
||||||
=============
|
========
|
||||||
|
|
||||||
### Engine settings
|
### Template cache
|
||||||
|
|
||||||
Что бы установить папку для хранения кеша собранных шаблонов
|
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$fenom->setCompileDir($dir);
|
$fenom->setCompileDir($dir);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This method set the name of the directory where template caches are stored. By default this is `/tmp`. This directory must be writeable.
|
||||||
|
|
||||||
### Template settings
|
### Template settings
|
||||||
|
|
||||||
```php
|
```php
|
||||||
@ -20,7 +20,7 @@ $fenom->setOptions($options);
|
|||||||
|
|
||||||
Параметры могут быть массивом `'option_name' => true` (если ключ не указан автоматически задаётся false) или битовой маской.
|
Параметры могут быть массивом `'option_name' => true` (если ключ не указан автоматически задаётся false) или битовой маской.
|
||||||
|
|
||||||
* **disable_methods**, `Fenom::DENY_METHODS`, запретить вызов методов у объектов
|
* **disable_methods**, `Fenom::DENY_METHODS`, disable calling methods in templates. Any method call in the template will throw `Fenom\SecurityException`.
|
||||||
* **disable_native_funcs**, `Fenom::DENY_INLINE_FUNCS`, запретить использование PHP функций, кроме разрешенных.
|
* **disable_native_funcs**, `Fenom::DENY_INLINE_FUNCS`, запретить использование PHP функций, кроме разрешенных.
|
||||||
* **auto_reload**, `Fenom::AUTO_RELOAD`, пересобирать шаблон если его оригинал был изменён (замедляет работу шаблонизатора).
|
* **auto_reload**, `Fenom::AUTO_RELOAD`, пересобирать шаблон если его оригинал был изменён (замедляет работу шаблонизатора).
|
||||||
* **force_compile**, `Fenom::FORCE_COMPILE`, пересобирать шаблон при каждом вызове (сильно замедляет работу шаблонизатора).
|
* **force_compile**, `Fenom::FORCE_COMPILE`, пересобирать шаблон при каждом вызове (сильно замедляет работу шаблонизатора).
|
||||||
|
Loading…
Reference in New Issue
Block a user