mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Update docs
This commit is contained in:
parent
2c0ac60c14
commit
c6abbdb328
@ -22,16 +22,16 @@ $fenom->setOptions($options);
|
||||
|
||||
| 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 | |
|
||||
| *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` | disable calling static methods in templates. | |
|
||||
|
||||
```php
|
||||
$fenom->setOptions(array(
|
||||
|
Loading…
Reference in New Issue
Block a user