From 2c0ac60c1405c727c4660f53704a1fbdb425a23e Mon Sep 17 00:00:00 2001 From: Ivan Shalganov Date: Tue, 28 Jan 2014 19:44:24 +0200 Subject: [PATCH] Update docs --- docs/settings.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/docs/settings.md b/docs/settings.md index ba959a7..d859f69 100644 --- a/docs/settings.md +++ b/docs/settings.md @@ -20,17 +20,18 @@ $fenom->setOptions($options); Параметры могут быть массивом `'option_name' => true` (если ключ не указан автоматически задаётся false) или битовой маской. -| Code | Constant | Description | Affect | -| -------------------- | ------------------------- | ------------ | ------- | -| disable_methods | `Fenom::DENY_METHODS` | disable calling methods of objects in templates. | | -| disable_native_funcs | `Fenom::DENY_INLINE_FUNCS`| disable calling native function in templates, except allowed. | | -| auto_reload | `Fenom::AUTO_RELOAD` | reload template if source will be changed | decreases the performance | -| force_compile | `Fenom::FORCE_COMPILE` | recompile template every time when the template renders | greatly decreases performance | -| disable_cache | `Fenom::DISABLE_CACHE` | disable compile cache | greatly decreases performance | -| force_include | `Fenom::FORCE_INCLUDE` | paste template body instead of include-tag | increases performance, increases cache size | -| auto_escape | `Fenom::AUTO_ESCAPE` | html-escape each variables outputs | decreases performance | -| force_verify | `Fenom::FORCE_VERIFY` | check existence every used variable | decreases performance | -| auto_trim | `Fenom::AUTO_TRIM` | remove space-characters before and after tags | | +| Code | Constant | Description | Affect | +| ---------------------- | ------------------------- | ------------ | ------- | +| `disable_methods` | `Fenom::DENY_METHODS` | disable calling methods of objects in templates. | | +| `disable_native_funcs` | `Fenom::DENY_INLINE_FUNCS`| disable calling native function in templates, except allowed. | | +| `auto_reload` | `Fenom::AUTO_RELOAD` | reload template if source will be changed | decreases the performance | +| `force_compile` | `Fenom::FORCE_COMPILE` | recompile template every time when the template renders | greatly decreases performance | +| `disable_cache` | `Fenom::DISABLE_CACHE` | disable compile cache | greatly decreases performance | +| `force_include` | `Fenom::FORCE_INCLUDE` | paste template body instead of include-tag | increases performance, increases cache size | +| `auto_escape` | `Fenom::AUTO_ESCAPE` | html-escape each variables outputs | decreases performance | +| `force_verify` | `Fenom::FORCE_VERIFY` | check existence every used variable | decreases performance | +| `auto_trim` | `Fenom::AUTO_TRIM` | remove space-characters before and after tags | | +| `disable_statics` | `Fenom::DENY_STATICS` | remove space-characters before and after tags | | ```php $fenom->setOptions(array(