├── docs ├── current_lang ├── entities │ ├── .cvsignore │ ├── version.ent │ ├── version.ent.in │ └── ISO │ │ ├── ISOamsc │ │ └── ISOdia ├── scripts │ └── revcheck.php ├── fr │ ├── make_chm_index.html │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ └── bugs.xml │ ├── translation.xml │ └── programmers │ │ ├── api-variables │ │ ├── variable-default-template-handler-func.xml │ │ ├── variable-compiler-class.xml │ │ ├── variable-config-fix-newlines.xml │ │ ├── variable-left-delimiter.xml │ │ ├── variable-right-delimiter.xml │ │ ├── variable-request-vars-order.xml │ │ ├── variable-cache-handler-func.xml │ │ ├── variable-debug-tpl.xml │ │ └── variable-default-resource-type.xml │ │ └── advanced-features.xml ├── pt_BR │ ├── make_chm_index.html │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ ├── bugs.xml │ │ └── resources.xml │ ├── programmers │ │ ├── api-variables │ │ │ ├── variable-left-delimiter.xml │ │ │ ├── variable-right-delimiter.xml │ │ │ ├── variable-request-vars-order.xml │ │ │ ├── variable-default-template-handler-func.xml │ │ │ ├── variable-secure-dir.xml │ │ │ ├── variable-compiler-class.xml │ │ │ ├── variable-config-fix-newlines.xml │ │ │ ├── variable-undefined.xml │ │ │ ├── variable-use-sub-dirs.xml │ │ │ ├── variable-debug-tpl.xml │ │ │ ├── variable-compile-id.xml │ │ │ ├── variable-debugging.xml │ │ │ ├── variable-cache-handler-func.xml │ │ │ ├── variable-default-resource-type.xml │ │ │ ├── variable-trusted-dir.xml │ │ │ ├── variable-config-overwrite.xml │ │ │ ├── variable-debugging-ctrl.xml │ │ │ ├── variable-config-booleanize.xml │ │ │ ├── variable-force-compile.xml │ │ │ ├── variable-cache-modified-check.xml │ │ │ ├── variable-config-read-hidden.xml │ │ │ └── variable-default-modifiers.xml │ │ ├── api-functions │ │ │ ├── api-unregister-object.xml │ │ │ ├── api-unregister-postfilter.xml │ │ │ ├── api-unregister-prefilter.xml │ │ │ ├── api-unregister-outputfilter.xml │ │ │ ├── api-unregister-block.xml │ │ │ ├── api-clear-all-assign.xml │ │ │ └── api-unregister-compiler-function.xml │ │ └── advanced-features.xml │ └── translation.xml ├── en │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ └── bugs.xml │ ├── programmers │ │ └── api-variables │ │ │ ├── variable-compiler-class.xml │ │ │ ├── variable-compile-locking.xml │ │ │ ├── variable-force-cache.xml │ │ │ ├── variable-locking-timeout.xml │ │ │ ├── variable-right-delimiter.xml │ │ │ ├── variable-left-delimiter.xml │ │ │ ├── variable-caching-type.xml │ │ │ ├── variable-trusted-dir.xml │ │ │ ├── variable-default-modifiers.xml │ │ │ ├── variable-default-resource-type.xml │ │ │ ├── variable-config-read-hidden.xml │ │ │ ├── variable-default-config-type.xml │ │ │ └── variable-debug-template.xml │ └── bookinfo.xml ├── it │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ ├── bugs.xml │ │ └── resources.xml │ ├── programmers │ │ ├── api-variables │ │ │ ├── variable-right-delimiter.xml │ │ │ ├── variable-left-delimiter.xml │ │ │ ├── variable-request-vars-order.xml │ │ │ ├── variable-default-template-handler-func.xml │ │ │ ├── variable-secure-dir.xml │ │ │ ├── variable-compiler-class.xml │ │ │ ├── variable-debug-tpl.xml │ │ │ ├── variable-config-fix-newlines.xml │ │ │ ├── variable-debugging.xml │ │ │ ├── variable-compile-id.xml │ │ │ ├── variable-config-overwrite.xml │ │ │ ├── variable-cache-handler-func.xml │ │ │ ├── variable-error-reporting.xml │ │ │ ├── variable-trusted-dir.xml │ │ │ ├── variable-default-resource-type.xml │ │ │ ├── variable-cache-modified-check.xml │ │ │ ├── variable-force-compile.xml │ │ │ ├── variable-debugging-ctrl.xml │ │ │ ├── variable-config-booleanize.xml │ │ │ ├── variable-use-sub-dirs.xml │ │ │ ├── variable-default-modifiers.xml │ │ │ ├── variable-config-dir.xml │ │ │ └── variable-config-read-hidden.xml │ │ ├── advanced-features.xml │ │ └── api-functions │ │ │ ├── api-unregister-object.xml │ │ │ ├── api-unregister-prefilter.xml │ │ │ ├── api-unregister-postfilter.xml │ │ │ ├── api-unregister-outputfilter.xml │ │ │ ├── api-unregister-block.xml │ │ │ ├── api-template-exists.xml │ │ │ └── api-unregister-compiler-function.xml │ └── bookinfo.xml ├── es │ ├── language-defs.ent │ ├── livedocs.ent │ ├── appendixes │ │ ├── bugs.xml │ │ └── resources.xml │ └── programmers │ │ ├── api-variables │ │ ├── variable-default-template-handler-func.xml │ │ ├── variable-compiler-class.xml │ │ ├── variable-config-fix-newlines.xml │ │ ├── variable-right-delimiter.xml │ │ ├── variable-left-delimiter.xml │ │ ├── variable-request-vars-order.xml │ │ ├── variable-default-resource-type.xml │ │ ├── variable-config-booleanize.xml │ │ ├── variable-cache-handler-func.xml │ │ ├── variable-trusted-dir.xml │ │ ├── variable-default-modifiers.xml │ │ ├── variable-debug-tpl.xml │ │ └── variable-config-read-hidden.xml │ │ └── advanced-features.xml ├── de │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ ├── bugs.xml │ │ └── resources.xml │ ├── programmers │ │ ├── api-variables │ │ │ ├── variable-default-template-handler-func.xml │ │ │ ├── variable-config-fix-newlines.xml │ │ │ ├── variable-compiler-class.xml │ │ │ ├── variable-config-booleanize.xml │ │ │ ├── variable-left-delimiter.xml │ │ │ ├── variable-right-delimiter.xml │ │ │ ├── variable-cache-handler-func.xml │ │ │ ├── variable-default-resource-type.xml │ │ │ ├── variable-request-vars-order.xml │ │ │ ├── variable-trusted-dir.xml │ │ │ └── variable-debug-tpl.xml │ │ ├── advanced-features.xml │ │ └── api-functions │ │ │ ├── api-unregister-object.xml │ │ │ ├── api-unregister-prefilter.xml │ │ │ ├── api-unregister-postfilter.xml │ │ │ └── api-unregister-outputfilter.xml │ └── designers │ │ └── language-modifiers │ │ └── language-modifier-lower.xml ├── ja │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ └── bugs.xml │ ├── translation.xml │ └── programmers │ │ ├── api-variables │ │ ├── variable-compile-locking.xml │ │ ├── variable-compiler-class.xml │ │ ├── variable-force-cache.xml │ │ ├── variable-locking-timeout.xml │ │ ├── variable-caching-type.xml │ │ ├── variable-trusted-dir.xml │ │ ├── variable-default-modifiers.xml │ │ ├── variable-left-delimiter.xml │ │ ├── variable-right-delimiter.xml │ │ ├── variable-default-config-type.xml │ │ ├── variable-config-read-hidden.xml │ │ ├── variable-default-resource-type.xml │ │ ├── variable-debug-template.xml │ │ └── variable-cache-locking.xml │ │ └── advanced-features │ │ └── advanced-features-streams.xml ├── ru │ ├── livedocs.ent │ ├── language-defs.ent │ ├── appendixes │ │ └── bugs.xml │ └── programmers │ │ ├── api-variables │ │ ├── variable-default-template-handler-func.xml │ │ ├── variable-request-vars-order.xml │ │ ├── variable-secure-dir.xml │ │ ├── variable-debug-tpl.xml │ │ ├── variable-compiler-class.xml │ │ ├── variable-right-delimiter.xml │ │ ├── variable-left-delimiter.xml │ │ ├── variable-config-fix-newlines.xml │ │ ├── variable-debugging.xml │ │ ├── variable-cache-handler-func.xml │ │ ├── variable-config-overwrite.xml │ │ ├── variable-trusted-dir.xml │ │ ├── variable-default-resource-type.xml │ │ ├── variable-debugging-ctrl.xml │ │ ├── variable-error-reporting.xml │ │ ├── variable-config-booleanize.xml │ │ ├── variable-default-modifiers.xml │ │ ├── variable-force-compile.xml │ │ ├── variable-cache-modified-check.xml │ │ ├── variable-use-sub-dirs.xml │ │ ├── variable-config-dir.xml │ │ └── variable-config-read-hidden.xml │ │ ├── advanced-features.xml │ │ └── api-functions │ │ ├── api-unregister-prefilter.xml │ │ ├── api-unregister-postfilter.xml │ │ └── api-unregister-outputfilter.xml └── README ├── README.md └── composer.json /docs/current_lang: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /docs/entities/.cvsignore: -------------------------------------------------------------------------------- 1 | version.ent 2 | file-entities.ent 3 | -------------------------------------------------------------------------------- /docs/entities/version.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/entities/version.ent.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/scripts/revcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarty-php/smarty-documentation/HEAD/docs/scripts/revcheck.php -------------------------------------------------------------------------------- /docs/fr/make_chm_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarty-php/smarty-documentation/HEAD/docs/fr/make_chm_index.html -------------------------------------------------------------------------------- /docs/pt_BR/make_chm_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarty-php/smarty-documentation/HEAD/docs/pt_BR/make_chm_index.html -------------------------------------------------------------------------------- /docs/en/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | '> 4 | '> 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/it/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | '> 4 | '> 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/es/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/it/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/en/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/de/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | '> 5 | '> 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/es/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | '> 5 | '> 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/ja/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | '> 6 | '> 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/pt_BR/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | '> 5 | '> 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/fr/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | '> 5 | '> 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/fr/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/de/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/ru/livedocs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | '> 6 | '> 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/ja/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/ru/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Smarty template engine documentation 2 | 3 | The current repo is deprecated and replaced by: 4 | 5 | The documentation is accessible here: https://smarty-php.github.io/smarty/ 6 | 7 | The documentation is tracked here: https://github.com/smarty-php/smarty/tree/master/docs 8 | 9 | How to contribute: https://github.com/smarty-php/smarty/blob/master/CONTRIBUTING.md#improving-the-documentation 10 | -------------------------------------------------------------------------------- /docs/pt_BR/language-defs.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- 1 | This directory contains the documentation for Smarty. All files are in docbook 2 | format with an .xml extension. Different subdirs contain different available languages. 3 | 4 | Programs required: 5 | 6 | xmlto 7 | xsltproc 8 | fop 9 | 10 | Files required: 11 | 12 | Default XSL stylesheets, ship with Ubuntu under: 13 | /usr/share/xml/docbook/stylesheet/docbook-xsl 14 | 15 | MAKE: 16 | * make html (make plain html english docs) 17 | * make pdf (make pdf english docs) 18 | * make LANG=de html (make plain html german docs) 19 | * make LANG=de pdf (make pdf german docs) 20 | 21 | CHM files (todo) 22 | 23 | Revision Tracking (for translations): 24 | * make LANG=de revcheck (this will create revcheck.html) 25 | -------------------------------------------------------------------------------- /docs/en/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BUGS 5 | 6 | Check the BUGS file that comes with 7 | the latest distribution of Smarty, or check the website. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/es/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ERRORES 5 | 6 | Revise el archivo de BUGS que viene con 7 | la ultima distribución del Smarty, o Revise el website. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/it/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BUGS 5 | 6 | Verificate il file BUGS compreso nella 7 | distribuzione più recente di Smarty, oppure controllate 8 | direttamente sul sito web. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/fr/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BUGS 6 | 7 | Vérifiez le fichier de BUGS fourni avec la dernière version de Smarty ou 8 | consultez le site Web. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $right_delimiter 5 | 6 | E' il delimitatore di destra usato dal linguaggio dei template. 7 | Per default è "}". 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/de/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BUGS 6 | 7 | Bitte konsultieren Sie die Datei BUGS welche mit Smarty ausgeliefert wird, 8 | oder die Webseite. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $left_delimiter 5 | 6 | E' il delimitatore di sinistra usato dal linguaggio dei template. 7 | Per default è "{". 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/ja/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | バグ 7 | 8 | Smarty の最新ディストリビューションに付属している 9 | BUGS ファイルを読むか、web サイトをチェックしてください。 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/ru/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ошибки 6 | 7 | Смотрите файл BUGS, который поставляется вместе с 8 | стандартной поставкой Smarty или ищите список на сайте. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/fr/translation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ceci est le fichier généré par smarty/docs/scripts/revcheck.php. 6 | Il vous permet de voir rapidement quels sont les fichiers qui 7 | doivent être mis à jour ainsi que la personne qui s'en occupe. 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $request_vars_order 5 | 6 | L'ordine in cui sono registrate le variabili della richiesta http, 7 | simile a variables_order in php.ini. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/pt_BR/appendixes/bugs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BUGS 6 | 7 | Verifique o arquivo BUGS que vem com a última 8 | distribuição do Smarty, ou verifique a seção BUGS do website. 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_template_handler_func 5 | 6 | Esta función es llamada cuando un template no puede ser obtenido 7 | desde su recurso. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_template_handler_func 5 | 6 | Questa funzione viene chiamata quando Smarty non riesce a 7 | caricare un template. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-secure-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $secure_dir 5 | 6 | E' un array contenente tutte le directory locali che sono considerate 7 | sicure. {include} e {fetch} lo usano quando $security è abilitata. 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compiler_class 5 | 6 | Specifies the name of the compiler class that Smarty will use 7 | to compile the templates. The default is 'Smarty_Compiler'. For 8 | advanced users only. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $left_delimiter 6 | 7 | Este é o delimitador esquerdo usado para a linguagem de template. 8 | O padrão é "{". 9 | 10 | 11 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "smarty/smarty-documentation", 3 | "type": "library", 4 | "description": "Smarty Documentation Sources", 5 | "keywords": ["templating"], 6 | "homepage": "http://www.smarty.net", 7 | "license": "LGPL-3.0", 8 | "authors": [ 9 | { 10 | "name": "Monte Ohrt", 11 | "email": "monte@ohrt.com" 12 | }, 13 | { 14 | "name": "Uwe Tews", 15 | "email": "uwe.tews@googlemail.com" 16 | }, 17 | { 18 | "name": "Rodney Rehm", 19 | "email": "rodney.rehm@medialize.de" 20 | } 21 | ], 22 | "support": { 23 | "irc": "irc://irc.freenode.org/smarty", 24 | "issues": "http://code.google.com/p/smarty-php/issues/list", 25 | "forum": "http://www.smarty.net/forums/" 26 | }, 27 | "extra": { 28 | "branch-alias": { 29 | "dev-master": "3.1.x-dev" 30 | } 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $right_delimiter 6 | 7 | Este é o delimitador direito usado para a linguagem de template. 8 | O padrão é "}". 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compiler_class 5 | 6 | Specifica il nome della classe del compilatore che Smarty userà 7 | per compilare i template. Il default è 'Smarty_Compiler'. Solo per 8 | utenti avanzati. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_template_handler_func 6 | 7 | Функция, вызываемая в случае, если шаблон не был получен из 8 | своего источника. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compiler_class 5 | 6 | Especifica el nombre del compilador de clases que Smarty usara 7 | para compilar los templates. El default es 'Smarty_Compiler'. 8 | Solo para usuarios avanzados. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $request_vars_order 6 | 7 | A ordem na qual as variáveis requeridas serão registradas, similar ao 8 | variables_order no php.ini 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $request_vars_order 6 | 7 | Порядок, в котором будут регистрироваться переменные запроса, 8 | наподобие variables_order из php.ini 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $default_template_handler_func 7 | 8 | Cette fonction est appelée quand un template ne peut pas être 9 | obtenu avec sa ressource. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/ja/translation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | このファイルは、Smarty 日本語マニュアルの翻訳状況を示すものです。 6 | このファイルは、smarty/docs/scripts/revcheck.php によって自動的に作成されます。 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_fix_newlines 5 | 6 | Si es asignado true, mac y dos newlines (\r y \r\n) en el archivo de 7 | configuración seran convertidos a \n cuando estos fueran interpretados. 8 | true es el defaut. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_template_handler_func 6 | 7 | Essa função é chamada quando um template não pode ser obtido 8 | de seu recurso. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $debug_tpl 5 | 6 | Questo è il nome del file di template usato per la console di debugging. 7 | Per default, il nome è debug.tpl ed il file si trova nella SMARTY_DIR. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-secure-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $secure_dir 6 | 7 | Это массив всех локальных директори, которые считаются безопасными. 8 | {include} и {fetch} используют этот параметр при влюченном безопасном режиме. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-default-template-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_template_handler_func 6 | 7 | Diese Funktion wird aufgerufen, wenn ein Template nicht aus der 8 | vorgegebenen Quelle geladen werden kann. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/it/appendixes/resources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Risorse 5 | 6 | La homepage di Smarty è &url.smarty;. 8 | Potete sottoscrivere la mailing list inviando una e-mail 9 | a &ml.general.sub;. L'archivio della mailing list è 10 | disponibile a &url.ml.archive;. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_fix_newlines 5 | 6 | Se impostato a true, i caratteri di 'a capo' mac e dos (\r e \r\n) nei 7 | file di configurazione vengono convertiti a \n quando sono analizzati. 8 | true per default. 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-secure-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $secure_dir 6 | 7 | Isso é um array de todos os diretórios locais que são considerados 8 | seguros. {include} e {fetch} usam estes (diretórios) quando security está habilitado. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debug_tpl 6 | 7 | Имя файла шаблона, используемого для панели отладки (debugging console). 8 | По умолчанию это файл debug.tpl, расположенный в SMARTY_DIR. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_fix_newlines 6 | 7 | Definiert ob MAC und DOS Zeilenumbrüche (\r und \r\n) in Konfigurationsdateien automatisch in \n umgewandelt werden sollen. Standardwert: true 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-compile-locking.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compile_locking 5 | 6 | Compile locking avoids concurrent compilation of the same template. 7 | 8 | 9 | Compile locking is enabled by default. To disable it set $compile_locking to &false;. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $compiler_class 7 | 8 | Smarty がテンプレートをコンパイルするために使用するコンパイラクラスの名前を指定します。 9 | デフォルトは 'Smarty_Compiler' です。 10 | これは上級ユーザのために用意されています。 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $compiler_class 6 | 7 | Задает имя класса-компилятора, который Smarty будет использовать 8 | для компиляции шаблонов. По умолчанию это 'Smarty_Compiler'. Только 9 | для продвинутых пользователей. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-compile-locking.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compile_locking 5 | 6 | Compile locking avoids concurrent compilation of the same template. 7 | 8 | 9 | Compile locking is enabled by default. To disable it set $compile_locking to &false;. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-force-cache.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $force_cache 5 | 6 | This forces Smarty to (re)cache templates on every invocation. It does not override the 7 | $caching level, but merely 8 | pretends the template has never been cached before. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $right_delimiter 6 | 7 | Правый разделитель, используемый в языке шаблонов. 8 | По умолчанию равно "}". 9 | 10 | 11 | См. также 12 | $left_delimiter. 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $compiler_class 6 | 7 | Definiert den Namen der Compiler-Klasse, die Smarty zum kompilieren 8 | der Templates verwenden soll. Normalerweise 'Smarty_Compiler'. Nur 9 | für fortgeschrittene Anwender. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-force-cache.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $force_cache 5 | 6 | This forces Smarty to (re)cache templates on every invocation. It does not override the 7 | $caching level, but merely 8 | pretends the template has never been cached before. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $compiler_class 7 | 8 | Spécifie le nom de la classe du compilateur qui va être utilisée pour 9 | compiler les templates. Le compilateur par défaut est 10 | 'Smarty_Compiler'. Réservé aux utilisateurs avancés. 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-compiler-class.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $compiler_class 6 | 7 | Especifica o nome do compilador de classes que 8 | Smarty irá usar para compilar templates. O padrão é 'Smarty_Compiler'. 9 | Para usuários avançados somente. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_fix_newlines 6 | 7 | Se setado para true, mac e dos newlines (\r e \r\n) no arquivo de configuração serão 8 | convertidos para \n quando eles forem interpretados. true é o padrão. 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-undefined.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $undefined 6 | 7 | Isso seta o valor de $undefined para Smarty, o padrão é null. 8 | Atualmente isso é somente usado para setar variáveis indefinidas em 9 | $global_assign para o valor padrão. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-use-sub-dirs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $use_sub_dirs 6 | 7 | Configure isso para false se seu ambiente de PHP não permite a criação de 8 | subdiretórios pela Smarty. Subdiretórios são muito eficientes, então use-os se você 9 | conseguir. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $left_delimiter 6 | 7 | Левый разделитель, используемый в языке шаблонов. 8 | По умолчанию равно "{". 9 | 10 | 11 | См. также 12 | $right_delimiter. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debug_tpl 6 | 7 | Este é o nome do arquivo de template usado para o console de debug. 8 | Por padrão, é nomeado como debug.tpl e está localizado no SMARTY_DIR. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_fix_newlines 6 | 7 | Если установлено в true, переводы строк в стиле mac и dos (\r и \r\n) 8 | в конфигурационных файлах будут конвертированы в \n при синтаксическом 9 | разборе. По умолчанию равно true. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-debugging.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $debugging 5 | 6 | Questa variabile abilita la console di debugging. 8 | La console è una finestra javascript che vi informa sui template 9 | inclusi e sulle variabili valorizzate per la pagina attuale. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/es/appendixes/resources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fuentes 5 | 6 | La pagina principal del Smarty está localizada en 7 | &url.smarty;. 8 | Usted puede ingresar a la lista de email enviando un e-mail a 9 | &ml.general.sub;. El archivo de la lista de e-mail puede ser 10 | visto en &url.ml.archive;. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-locking-timeout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $locking_timeout 5 | 6 | This is maximum time in seconds a cache lock is valid to avoid dead locks. The deafult value is 10 seconds. 7 | 8 | 9 | See also 10 | $cache_locking 11 | 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-locking-timeout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $locking_timeout 5 | 6 | This is maximum time in seconds a cache lock is valid to avoid dead locks. The deafult value is 10 seconds. 7 | 8 | 9 | See also 10 | $cache_locking 11 | 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-compile-id.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $compile_id 5 | 6 | Identificatore persistente di compilazione. In alternativa a passare 7 | lo stesso compile_id ad ogni chiamata di funzione, potete impostare 8 | questa variabile ed il suo valore verrà usato implicitamente da quel 9 | momento in poi. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-compile-id.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $compile_id 6 | 7 | Identificador de compilação persistente. Como uma alternativa 8 | para passar o mesmo compile_id para cada chamada de função, você 9 | pode setar este compile_id e isso irá ser usado implicitamente após isso. 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-debugging.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debugging 6 | 7 | Активирует debugging 8 | console - порожденное при помощи javascript окно браузера, 9 | содержащее информацию о подключенных шаблонах и загруженных 10 | переменных для текущей страницы. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $right_delimiter 5 | 6 | Este es el delimitador derecho usado por el lenguaje de template. 7 | El default es "}". 8 | 9 | 10 | ver también $left_delimiter 11 | y escaping smarty parsing. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $right_delimiter 5 | 6 | This is the right delimiter used by the template language. 7 | Default is }. 8 | 9 | 10 | See also $left_delimiter 11 | and 12 | escaping smarty parsing. 13 | 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $left_delimiter 5 | 6 | Este es el delimitador izquierdo usado por el lenguaje de template. 7 | El default es "{". 8 | 9 | 10 | Ver también $right_delimiter 11 | y escaping smarty parsing. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $left_delimiter 5 | 6 | This is the left delimiter used by the template language. 7 | Default is {. 8 | 9 | 10 | See also $right_delimiter 11 | and 12 | escaping smarty parsing 13 | . 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-config-fix-newlines.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $config_fix_newlines 7 | 8 | Si cette variable est mise à &true;, les caractéres de nouvelles lignes mac et dos 9 | ('\r' et '\r\n') sont convertis en 10 | '\n' quand ils sont analysés. &true; par défaut. 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/pt_BR/appendixes/resources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Recursos 6 | 7 | A homepage do Smarty está localizada em &url.smarty;. 9 | Você pode entrar na lista de discussão enviando um e-mail para 10 | &ml.general.sub;. O arquivo da lista de discussão pode ser 11 | visualizado em &url.ml.archive;. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-caching-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $caching_type 5 | 6 | This property specifies the name of the caching handler to use. 7 | It defaults to file, enabling the internal filesystem based cache handler. 8 | 9 | 10 | See Custom Cache Implementation 11 | for pointers on setting up your own cache handler. 12 | 13 | 14 | 15 | 35 | 36 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-caching-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $caching_type 5 | 6 | This property specifies the name of the caching handler to use. 7 | It defaults to file, enabling the internal filesystem based cache handler. 8 | 9 | 10 | See Custom Cache Implementation 11 | for pointers on setting up your own cache handler. 12 | 13 | 14 | 15 | 35 | 36 | -------------------------------------------------------------------------------- /docs/de/appendixes/resources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Weiterführende Informationen 6 | 7 | Smarty's Homepage erreicht man unter &url.smarty;. Sie können der Smarty 9 | Mailingliste beitreten in dem sie ein E-mail an 10 | &ml.general.sub;. Das Archiv der Liste ist hier &url.ml.archive; einsehbar. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-config-overwrite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_overwrite 5 | 6 | Se è impostato a true, le variabili lette dai file di configurazione si 7 | sovrascriveranno l'una con l'altra. Diversamente, verranno messe in un 8 | array. E' utile se volete memorizzare array di dati nei file di configurazione, 9 | è sufficiente elencare più volte ogni elemento. true per default. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-object.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_object 6 | 7 | 8 | void unregister_object 9 | string object_name 10 | 11 | 12 | 13 | Use isso para desregistrar um objeto. 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-debugging.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debugging 6 | 7 | Isso habilita o debugging console. 9 | O console é uma janela de javascript que informa à você 10 | sobre os arquivos de template incluídos e variáveis 11 | destinadas para a página de template atual. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $request_vars_order 5 | 6 | El orden en el cual las variables requeridas seran registradas, 7 | similar al variables_order en el php.ini 8 | 9 | 10 | Ver también $smarty.request 11 | y $request_use_auto_globals. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $cache_handler_func 5 | 6 | Potete fornire una funzione personalizzata di gestione dei file 7 | della cache invece di usare il metodo incorporato che usa la 8 | $cache_dir. Consultate la sezione funzione di 10 | gestione della cache per i dettagli. 11 | 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-error-reporting.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $error_reporting 5 | 6 | Quando a questa variabile viene dato un valore non-null, 7 | il suo valore viene usato come livello di error_reporting 8 | di php all'interno di display() e fetch(). Quando il debugging 9 | è abilitato questo valore è ignorato e il livello degli 10 | errori viene lasciato invariato. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $cache_handler_func 6 | 7 | Вы можете добавить собственную функцию для управления файлами кэша 8 | вместо вызовов встроенного метода, используя $cache_dir. 9 | За дополнительной информацией обратитесь к разделу 10 | Управление 11 | кэшированием. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $trusted_dir 5 | 6 | $trusted_dir is only for use when 7 | security is enabled. 8 | This is an array of all directories that are considered trusted. 9 | Trusted directories are where you keep php scripts that are executed 10 | directly from the templates 11 | with {include_php}. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/it/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Funzioni avanzate 5 | &programmers.advanced-features.advanced-features-objects; 6 | &programmers.advanced-features.advanced-features-prefilters; 7 | 8 | &programmers.advanced-features.advanced-features-postfilters; 9 | 10 | &programmers.advanced-features.advanced-features-outputfilters; 11 | 12 | &programmers.advanced-features.section-template-cache-handler-func; 13 | 14 | &programmers.advanced-features.template-resources; 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $trusted_dir 5 | 6 | $trusted_dir viene usata solo quando $security è abilitata. E' un array 7 | di tutte le directory che sono considerate affidabili. Le directory 8 | affidabili sono quelle dalle quali possono essere eseguiti script php 9 | direttamente dai template con {include_php}. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_resource_type 5 | 6 | Este anuncia a Smarty el tipo de recurso a usar implicitamente. 7 | El valor por default es 'file', significa que 8 | $smarty->display('index.tpl'); y 9 | $smarty->display('file:index.tpl'); son identicos en el significado. 10 | Para mas detalles vea el capitulo resource. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/es/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Caracteristicas Avanzadas 5 | &programmers.advanced-features.advanced-features-objects; 6 | &programmers.advanced-features.advanced-features-prefilters; 7 | 8 | &programmers.advanced-features.advanced-features-postfilters; 9 | 10 | &programmers.advanced-features.advanced-features-outputfilters; 11 | 12 | &programmers.advanced-features.section-template-cache-handler-func; 13 | 14 | &programmers.advanced-features.template-resources; 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-object.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_object 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_object</methodname> 12 | <methodparam><type>string</type><parameter>object_name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare un oggetto. 16 | </para> 17 | </refsect1> 18 | </refentry> 19 | <!-- Keep this comment at the end of the file 20 | Local variables: 21 | mode: sgml 22 | sgml-omittag:t 23 | sgml-shorttag:t 24 | sgml-minimize-attributes:nil 25 | sgml-always-quote-attributes:t 26 | sgml-indent-step:1 27 | sgml-indent-data:t 28 | indent-tabs-mode:nil 29 | sgml-parent-document:nil 30 | sgml-default-dtd-file:"../../../../manual.ced" 31 | sgml-exposed-tags:nil 32 | sgml-local-catalogs:nil 33 | sgml-local-ecat-files:nil 34 | End: 35 | vim600: syn=xml fen fdm=syntax fdl=2 si 36 | vim: et tw=78 syn=sgml 37 | vi: ts=1 sw=1 38 | --> 39 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <!-- $Revision$ --> 3 | <!-- EN-Revision: 3827 Maintainer: takagi Status: ready --> 4 | <!-- CREDITS: mat-sh,daichi,joe --> 5 | <sect1 id="variable.trusted.dir"> 6 | <title>$trusted_dir 7 | 8 | $trusted_dir は、 9 | セキュリティが有効な場合にのみ使用します。これは、 10 | 信用がおけると考えられる全ディレクトリパスの配列です。 11 | 信用がおけるディレクトリには、テンプレートから 12 | {include_php} 13 | によって直接実行される PHP スクリプトを置きます。 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-postfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_postfilter 6 | 7 | 8 | void unregister_postfilter 9 | string function_name 10 | 11 | 12 | 13 | Use isso para dinamicamente desregistrar um pósfiltro. 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-prefilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_prefilter 6 | 7 | 8 | void unregister_prefilter 9 | string function_name 10 | 11 | 12 | 13 | Use isso para dinamicamente desregistrar um préfiltro. 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-config-booleanize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_booleanize 6 | 7 | Wenn auf 'true' gesetzt, werden die Werte on/true/yes und off/false/no von Variablen aus Konfigurationsdateien automatisch auf true oder false gesetzt. Dies erlaubt eine einfachere Handhabung in Templates, da Sie somit {if #foobar#} ... {/if} benutzen können. Standardwert: true 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $left_delimiter 6 | 7 | Das zu verwendende linke Trennzeichen der Template-Sprache. 8 | Die Vorgabe ist '{'. 9 | 10 | 11 | Siehe auch $right_delimiter 12 | und 13 | escaping smarty parsing. 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $right_delimiter 6 | 7 | Das zu verwendende rechte Trennzeichen der Template-Sprache. 8 | Die Vorgabe ist '}'. 9 | 10 | 11 | Siehe auch $left_delimiter 12 | und 13 | escaping smarty parsing. 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_modifiers 5 | 6 | This is an array of modifiers to implicitly apply to every variable in a 7 | template. For example, to HTML-escape every variable by default, use 8 | array('escape:"htmlall"'). 9 | To make a variable exempt from default 10 | modifiers, add the 'nofilter' attribute to the output tag such as 11 | {$var nofilter}. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/entities/ISO/ISOamsc: -------------------------------------------------------------------------------- 1 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $default_modifiers 7 | 8 | テンプレート内のすべての変数に暗黙に適用される修飾子が格納された配列です。 9 | 例えば、 デフォルトですべての変数にHTMLエスケープ処理を施したい場合は、 10 | array('escape:"htmlall"') となります。 11 | この影響を受けない変数にするには、 12 | 'nofilter' 属性を {$var nofilter} などの出力タグに渡します。 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $left_delimiter 7 | 8 | これは、テンプレート言語の開始を表すデリミタです。 9 | デフォルトは { です。 10 | 11 | 12 | $right_delimiter 13 | および 14 | Smarty の構文解析を回避 15 | も参照してください。 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $right_delimiter 7 | 8 | これは、テンプレート言語の終端を表すデリミタです。 9 | デフォルトは } です。 10 | 11 | 12 | $left_delimiter 13 | および 14 | Smarty の構文解析を回避 15 | も参照してください。 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $cache_handler_func 6 | 7 | Você pode fornecer uma função padrão para manipular arquivos de cache ao invés de 8 | usar o método built-in usando o $cache_dir. Veja a 9 | seção cache 10 | handler function section para obter detalhes. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-config-overwrite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_overwrite 6 | 7 | Если установлено в true, переменные, полученные из конфигурационных файлов, 8 | будут перекрывать все остальные. В лбом случае, перемнные будут помещены в 9 | массив. Это удобно, когда вы хотите хранить массив данных в конфигурационном 10 | файле - просто задавайте каждый элемент много раз. По умолчанию true. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-config-booleanize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_booleanize 5 | 6 | Si es asignado true, los valores del archivo de configuración de 7 | on/true/yes y off/false/no se convierten en valores booleanos 8 | automáticamente. De esta forma usted puede usar los valores en un 9 | template como: {if #foobar#} ... {/if}. Si foobar estuviera on, 10 | true o yes, la condición {if} se ejecutara. true es el default. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-outputfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_outputfilter 6 | 7 | 8 | void unregister_outputfilter 9 | string function_name 10 | 11 | 12 | 13 | Use isso para desregistrar dinamicamente um filtro de saída. 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/entities/ISO/ISOdia: -------------------------------------------------------------------------------- 1 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_resource_type 5 | 6 | This tells smarty what resource type to use implicitly. The default value 7 | is file, meaning that 8 | $smarty->display('index.tpl') and 9 | $smarty->display('file:index.tpl') are identical in 10 | meaning. See the resource 11 | chapter for more details. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_resource_type 5 | 6 | Dice a Smarty che tipo di risorsa usare implicitamente. Il valore di 7 | default è 'file', il che significa che $smarty->display('index.tpl'); 8 | e $smarty->display('file:index.tpl'); hanno identico significato. 9 | Leggete il capitolo risorse 10 | per i dettagli. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $cache_handler_func 6 | 7 | Sie können auch eine eigene Cache-Handler Funktion definieren. 8 | statt nur mit der $cache_dir-Variable 9 | ein eigenes Verzeichnis festzulegen. 10 | Siehe Abschnitt zur custom cache handler Funktion. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-prefilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_prefilter 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_prefilter</methodname> 12 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare dinamicamente un prefiltro. 16 | </para> 17 | </refsect1> 18 | </refentry> 19 | <!-- Keep this comment at the end of the file 20 | Local variables: 21 | mode: sgml 22 | sgml-omittag:t 23 | sgml-shorttag:t 24 | sgml-minimize-attributes:nil 25 | sgml-always-quote-attributes:t 26 | sgml-indent-step:1 27 | sgml-indent-data:t 28 | indent-tabs-mode:nil 29 | sgml-parent-document:nil 30 | sgml-default-dtd-file:"../../../../manual.ced" 31 | sgml-exposed-tags:nil 32 | sgml-local-catalogs:nil 33 | sgml-local-ecat-files:nil 34 | End: 35 | vim600: syn=xml fen fdm=syntax fdl=2 si 36 | vim: et tw=78 syn=sgml 37 | vi: ts=1 sw=1 38 | --> 39 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-cache-modified-check.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <sect1 id="variable.cache.modified.check"> 4 | <title>$cache_modified_check 5 | 6 | Se è impostato a true, Smarty rispetterà l'header If-Modified-Since 7 | spedito dal client. Se il timestamp del file in cache non è 8 | cambiato dall'ultima visita, verrà inviato un header 9 | "304 Not Modified" invece del contenuto. Questo funziona solo sul 10 | contenuto in cache senza tag insert. 11 | 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-force-compile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $force_compile 5 | 6 | Questo valore forza Smarty a (ri)compilare i template ad 7 | ogni chiamata. Questa impostazione prevale su $compile_check. 8 | Per default è disabilitata. E' utile per lo sviluppo ed il 9 | debug. Non dovrebbe essere mai usata in un ambiente di produzione. 10 | Se il caching è abilitato, i file della cache verranno rigenerati 11 | ogni volta. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-left-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $left_delimiter 7 | 8 | Il s'agit du délimiteur gauche utilisé par le moteur de templates. La 9 | valeur par défaut est {. 10 | 11 | 12 | Voir aussi 13 | $right_delimiter et 14 | l'analyse d'échapement Smarty. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-postfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_postfilter 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_postfilter</methodname> 12 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare dinamicamente un postfiltro. 16 | </para> 17 | </refsect1> 18 | </refentry> 19 | <!-- Keep this comment at the end of the file 20 | Local variables: 21 | mode: sgml 22 | sgml-omittag:t 23 | sgml-shorttag:t 24 | sgml-minimize-attributes:nil 25 | sgml-always-quote-attributes:t 26 | sgml-indent-step:1 27 | sgml-indent-data:t 28 | indent-tabs-mode:nil 29 | sgml-parent-document:nil 30 | sgml-default-dtd-file:"../../../../manual.ced" 31 | sgml-exposed-tags:nil 32 | sgml-local-catalogs:nil 33 | sgml-local-ecat-files:nil 34 | End: 35 | vim600: syn=xml fen fdm=syntax fdl=2 si 36 | vim: et tw=78 syn=sgml 37 | vi: ts=1 sw=1 38 | --> 39 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <!-- EN-Revision: 1.1 Maintainer: nobody Status: ready --> 4 | <sect1 id="variable.default.resource.type"> 5 | <title>$default_resource_type 6 | 7 | Isso diz à Smarty qual tipo de recurso usar implicitamente. 8 | O valor padrão é 'file', significando que $smarty->display('index.tpl'); e 9 | $smarty->display('file:index.tpl'); são idênticos no significado. 10 | Veja o capítulo resource para detalhes. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_read_hidden 5 | 6 | If set to &true;, hidden sections ie section names beginning with a period(.) 7 | in config files 8 | can be read from templates. Typically you would leave 9 | this &false;, that way you can store sensitive data in the config files 10 | such as database parameters and not worry about the template loading 11 | them. &false; by default. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $cache_handler_func 5 | 6 | Usted puede proporcionar una función por default para manipular 7 | archivos de cache en vez de usar el metodo incrustado usando el 8 | $cache_dir. 9 | Para mas detalles vea la sección 10 | 11 | cache handler function section. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-right-delimiter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $right_delimiter 7 | 8 | Il s'agit du délimiteur droit utilisé par le moteur de templates. 9 | La valeur par défaut est }. 10 | 11 | 12 | Voir aussi 13 | $left_delimiter et 14 | l'analyse d'échappement Smarty. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-default-config-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_config_type 5 | 6 | This tells smarty what resource type to use for config files. The default value 7 | is file, meaning that 8 | $smarty->configLoad('test.conf') and 9 | $smarty->configLoad('file:test.conf') are identical in 10 | meaning. See the resource 11 | chapter for more details. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $trusted_dir 6 | 7 | $trusted_dir somente usado quando $security está habilitado. Isso é um array 8 | de todos os diretórios que são considerados confiáveis. Diretórios confiáveis 9 | são onde você irá deixar seus scripts php que são executados diretamente para o 10 | template com {include_php}. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/pt_BR/translation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | This file is used by smarty/docs/scripts/revcheck.php. 6 | It shows who make part of translation and what are they doing. 7 | Very important note: The smarty was translated to portuguese before the implementation 8 | of the revision system, by fernandoc, marcelo and surfmax. And thomasgm made some updates 9 | after this. Because of this there is no way to give the correct credits for who translated 10 | which file. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/de/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Advanced Features 6 | &programmers.advanced-features.advanced-features-objects; 7 | &programmers.advanced-features.advanced-features-prefilters; 8 | 9 | &programmers.advanced-features.advanced-features-postfilters; 10 | 11 | &programmers.advanced-features.advanced-features-outputfilters; 12 | &programmers.advanced-features.section-template-cache-handler-func; 13 | &programmers.advanced-features.template-resources; 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-debugging-ctrl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $debugging_ctrl 5 | 6 | Questa variabile consente modi alternativi per abilitare il 7 | debugging. NONE significa che non sono consentiti metodi 8 | alternativi. URL significa che quando la parola chiave 9 | SMARTY_DEBUG viene trovata nella QUERY_STRING, il debugging 10 | viene abilitato per quella chiamata dello script. Se 11 | $debugging è true, questo valore viene ignorato. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $config_read_hidden 7 | 8 | &true; の場合、設定ファイル 9 | のhiddenセクション(セクション名がピリオドで始まるもの) 10 | をテンプレートから読み込むことができます。 11 | 通常はこれを &false; のままにしておきます。 12 | そうすると、設定ファイルにデータベースパラメータのような注意が必要なデータを格納しても、 13 | テンプレートがそれらのデータを読み出してしまう心配はありません。デフォルトは &false; です。 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-config-overwrite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_overwrite 6 | 7 | Se configurado para true, variáveis lidas no arquivo de configurações irão sobrescrever 8 | uma a outra. Do contrário, as variáveis serão guardadas em um array. Isso é 9 | útil se você quer armazenar arrays de dados em arquivos de configuração, somente lista 10 | tempos de cada elemento múltiplo. true por padrão. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ru/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Расширенные возможности 6 | &programmers.advanced-features.advanced-features-objects; 7 | &programmers.advanced-features.advanced-features-prefilters; 8 | &programmers.advanced-features.advanced-features-postfilters; 9 | &programmers.advanced-features.advanced-features-outputfilters; 10 | &programmers.advanced-features.section-template-cache-handler-func; 11 | &programmers.advanced-features.template-resources; 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-default-config-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_config_type 5 | 6 | This tells smarty what resource type to use for config files. The default value 7 | is file, meaning that 8 | $smarty->configLoad('test.conf') and 9 | $smarty->configLoad('file:test.conf') are identical in 10 | meaning. See the resource 11 | chapter for more details. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-outputfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_outputfilter 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_outputfilter</methodname> 12 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare dinamicamente un filtro di output. 16 | </para> 17 | </refsect1> 18 | </refentry> 19 | <!-- Keep this comment at the end of the file 20 | Local variables: 21 | mode: sgml 22 | sgml-omittag:t 23 | sgml-shorttag:t 24 | sgml-minimize-attributes:nil 25 | sgml-always-quote-attributes:t 26 | sgml-indent-step:1 27 | sgml-indent-data:t 28 | indent-tabs-mode:nil 29 | sgml-parent-document:nil 30 | sgml-default-dtd-file:"../../../../manual.ced" 31 | sgml-exposed-tags:nil 32 | sgml-local-catalogs:nil 33 | sgml-local-ecat-files:nil 34 | End: 35 | vim600: syn=xml fen fdm=syntax fdl=2 si 36 | vim: et tw=78 syn=sgml 37 | vi: ts=1 sw=1 38 | --> 39 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-debugging-ctrl.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <!-- EN-Revision: 1.1 Maintainer: nobody Status: ready --> 4 | <sect1 id="variable.debugging.ctrl"> 5 | <title>$debugging_ctrl 6 | 7 | Isso permite caminhos alternativos de habilitar o debug. NONE não significa 8 | que métodos alternativos são permitidos. URL significa quando a palavra 9 | SMARTY_DEBUG foi encontrado na QUERY_STRING, que o debug está habilitado 10 | para a chamada do script. 11 | Se $debugging é true, esse valor é ignorado. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $trusted_dir 6 | 7 | $trusted_dir используется только при включенном параметре $security. Это массив 8 | всех директорий, которые считаются надёжными. Надёжные директории - это директории, 9 | в которых вы храните свои php-скрипты, которые включаются прямо в шаблоны при помощи 10 | директивы {include_php}. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-config-booleanize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_booleanize 6 | 7 | Se setado para true, os valores do arquivo de configuração de on/true/yes e off/false/no 8 | ficará convertido para valores booleanos automaticamente. Desta forma você pode usar os 9 | valores em um template como: {if #foobar#} ... {/if}. Se foobar estiver 10 | on, true ou yes, a condição {if} irá executar. true por padrão. 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/en/bookinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Smarty - the compiling PHP template engine 5 | 6 | 7 | Monte 8 | Ohrt <monte at ohrt dot com> 9 | 10 | 11 | Uwe 12 | Tews <uwe dot tews at googlemail dot com> 13 | 14 | 15 | &build-date; 16 | 17 | 2001-2011 18 | New Digital Group, Inc. 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-config-booleanize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_booleanize 5 | 6 | Se impostato a true, le variabili dei file di configurazione con i valori 7 | on/true/yes e off/false/no verranno convertite automaticamente in valori 8 | booleani. In questo modo potete usare questi valori nei template in questo 9 | modo: {if #foobar#} ... {/if}. Se foobar è on, true o yes, l'istruzione {if} 10 | verrà eseguita. true per default. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Advanced Features 6 | &programmers.advanced-features.advanced-features-objects; 7 | &programmers.advanced-features.advanced-features-prefilters; 8 | 9 | &programmers.advanced-features.advanced-features-postfilters; 10 | 11 | &programmers.advanced-features.advanced-features-outputfilters; 12 | 13 | &programmers.advanced-features.section-template-cache-handler-func; 14 | 15 | &programmers.advanced-features.template-resources; 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_resource_type 6 | 7 | Definiert den Ressourcentyp der von Smarty implizit verwendet werden soll. Standardwert 8 | ist 'file', was dazu führt dass $smarty->display('index.tpl'); und 9 | $smarty->display('file:index.tpl'); identisch sind. 10 | Weitere Informationen finden Sie im 11 | Resource-Kapitel. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $trusted_dir 5 | 6 | $trusted_dir solamente es usado cuando 7 | $security está habilitado. 8 | Este es un arreglo de todos los directorios que son considerados 9 | confiables. Los directorios confiables son de donde usted extraera 10 | sus script PHP que son ejecutados directamente desde el template con 11 | {include_php}. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/it/bookinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Smarty - il motore di template PHP con compilatore 5 | 6 | 7 | Monte 8 | Ohrt <monte at ohrt dot com> 9 | 10 | 11 | Andrei 12 | Zmievski <andrei@php.net> 13 | 14 | 15 | &build-date; 16 | 17 | 2001-2004 18 | New Digital Group, Inc. 19 | 20 | 21 | 22 | 42 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_resource_type 6 | 7 | Это свойство говорит Smarty, какой тип ресурсов использовать по умолчанию. 8 | Значением этого свойства по умолчанию является 'file', так что 9 | $smarty->display('index.tpl'); и $smarty->display('file:index.tpl'); 10 | имеют одинаковый смысл. Обратитесь к главе ресурсы для дополнительной информации. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/fr/programmers/advanced-features.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fonctionnalités avancées 6 | &programmers.advanced-features.advanced-features-objects; 7 | &programmers.advanced-features.advanced-features-prefilters; 8 | 9 | &programmers.advanced-features.advanced-features-postfilters; 10 | 11 | &programmers.advanced-features.advanced-features-outputfilters; 12 | 13 | &programmers.advanced-features.section-template-cache-handler-func; 14 | 15 | &programmers.advanced-features.template-resources; 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-use-sub-dirs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $use_sub_dirs 5 | 6 | Impostate questo valore a false se il vostro ambiente PHP non consente 7 | la creazione di sottodirectory da parte di Smarty. Le sottodirectory sono 8 | più efficienti, quindi usatele se potete. 9 | 10 | 11 | Nota tecnica 12 | 13 | A partire da Smarty-2.6.2 use_sub_dirs per default vale false. 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-debugging-ctrl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debugging_ctrl 6 | 7 | Позволяет активировать режим отладки альтернативными путями. 8 | Значение NONE запрещает использовать альтернативные методы. При 9 | значении переменной URL, режим отладки будет активирован для данного 10 | вызова скрипта в случае, если в QUERY_STRING будет обнаружено 11 | ключевое слово SMARTY_DEBUG. Этот параметр игнорируется, если 12 | $debugging установлено в true. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $request_vars_order 7 | 8 | L'ordre dans lequel les variables de requêtes sont enregistrées, 9 | identique a variables_order dans php.ini. 10 | 11 | 12 | Voir aussi 13 | $smarty.request et 14 | $request_use_auto_globals. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-force-compile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $force_compile 6 | 7 | Isso força Smarty para (re)compilar templates a cada requisição. 8 | Essa configuração sobreescreve $compile_check. Por padrão 9 | isso está desabilitado. Isso é útil para desenvolvimento e debug. 10 | Isso nunca deve ser usado em ambiente de produção. Se caching 11 | está habilitado, os arquivo(s) de cache serão regerados à todo momento. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-error-reporting.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $error_reporting 6 | 7 | Если это свойство имеет ненулевое значние, то оно используется 8 | в качестве значения error_reporting внутри 9 | display() и 10 | fetch(). 11 | При включенном режиме отладки это значение 13 | игнорируется и уровень обработки ошибок не меняется. 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/de/programmers/api-functions/api-unregister-object.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_object 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_object</methodname> 13 | <methodparam><type>string</type><parameter>object_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Pointer zu einem registrierten Objekt löschen 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-request-vars-order.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <!-- EN-Revision: 1.2 Maintainer: andreas Status: ready --> 4 | <sect1 id="variable.request.vars.order"> 5 | <title>$request_vars_order 6 | 7 | Die Reihenfolge in welcher die Request-Variblen zugewiesen werden. 8 | Verhält sich wie 'variables_order' in der php.ini. 9 | 10 | 11 | Siehe auch $smarty.request 12 | und 13 | $request_use_auto_globals. 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_modifiers 5 | 6 | Este es un arreglo de modificadores implicitamente aplicados para cada 7 | variable en el template. Por Ejemplo, cada variable HTML-escape por 8 | default, usa el arreglo('escape:"htmlall"'); Para hacer que las variables 9 | excenten los modificadores por default, pase el modificador especial 10 | "smarty" con un valor de parámetro "nodefaults" modificando esto, tal 11 | como {$var|smarty:nodefaults}. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $default_modifiers 5 | 6 | E' un array di modificatori da applicare implicitamente ad ogni variabile 7 | in un template. Ad esempio, per fare l'escape HTML ad ogni variabile per 8 | default, usate array('escape:"htmlall"'); per rendere una variabile 9 | esente dai modificatori di default, passatele lo speciale modificatore 10 | "smarty" con il parametro "nodefaults", così: {$var|smarty:nodefaults}. 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-config-booleanize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_booleanize 6 | 7 | Если установлено в true, значения параметров конфигурационных файлов 8 | on/true/yes и off/false/no будут конвертированы в булевы значения автоматически. 9 | В этом случае вы можете использовать в шаблоне конструкции, подобные этой: 10 | {if #foobar#} ... {/if}. Если foobar равно on, true или yes, будет осуществлен 11 | переход по условию {if}. По умолчанию равно true. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $debug_tpl 5 | 6 | Este es el nombre del archivo de template usado para el debug de la 7 | consola. Por default, es nombrado debug.tpl y esta 8 | localizado en el SMARTY_DIR. 9 | 10 | 11 | Ver también 12 | $debugging 13 | y 14 | Debugging console 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-cache-handler-func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $cache_handler_func 7 | 8 | Vous pouvez utiliser votre propre fonction de gestion du cache plutôt que 9 | d'utiliser celle livrée avec Smarty 10 | ($cache_dir). 11 | Référez-vous à la section sur la 12 | fonction de gestion de cache 13 | personnalisée pour plus de détails. 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_modifiers 6 | 7 | Массив модификаторов, неявно применяемых ко всем переменным шаблона. 8 | Например, для HTML-экранирования каждой переменной по умолчанию, используется 9 | конструкция array('escape:"htmlall"'); Для исключения действия таких 10 | модификаторов на какую-либо переменную, применяйте специальный "smarty" 11 | модификатор с параметром "nodefaults", например {$var|smarty:nodefaults}. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-force-compile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $force_compile 6 | 7 | Указывает Smarty (пере)компилировать шаблоны при каждом вызове. 8 | Этот параметр перекрывает действие $compile_check и по умолчанию 9 | не активирован. Действие параметра удобно использовать в процессе 10 | разработки и отладки, однако никогда не используйте его в условиях 11 | реальной эксплуатации: если кэширование активировано, файл(ы) кэша 12 | будут каждый раз перезаписываться. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $default_resource_type 7 | 8 | これは、暗黙に使用されるリソースの種類を指定します。 9 | デフォルトの値は file で、 10 | これは $smarty->display('index.tpl') と 11 | $smarty->display('file:index.tpl') 12 | とが意味的に同じになる、ということです。 13 | 詳細は、リソース 14 | の項を参照してください。 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-block.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_block 6 | 7 | 8 | void unregister_block 9 | string name 10 | 11 | 12 | 13 | Use isso para desregistrar dinamicamente um bloco de funções de plugin. 14 | Passe no bloco o nome da função. 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-functions/api-unregister-prefilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_prefilter 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_prefilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Используйте для динамической дерегистрации префильтра. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-cache-modified-check.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2761 $ --> 3 | <!-- EN-Revision: 0 Maintainer: tony2001 Status: ready --> 4 | <sect1 id="variable.cache.modified.check"> 5 | <title>$cache_modified_check 6 | 7 | Если установлено в true, Smarty будет учитывать If-Modified-Since 8 | заголовок, посланный клиентом. Если время создания кэшированного 9 | файла не изменилось с момента последнего посещения, то взамен его 10 | содержимого будет послан заголовок "304 Not Modified". Это работает 11 | только в случае, если кэшированное содержимое не содержит тэгов 12 | insert. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-trusted-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $trusted_dir 6 | 7 | $trusted_dir wird nur verwendet wenn 8 | $security eingeschaltet ist. 9 | Der Wert ist ein Array aller Verzeichnisse, die als vertrauenswürdig gelten. 10 | In diesen Verzeichnissen können PHP-Skripte, die man direkt aus einem Template 11 | mit {include_php} aufruft, 12 | abgelegt werden. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-cache-modified-check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $cache_modified_check 6 | 7 | Se configurado para true, Smarty irá respeitar o If-Modified-Since 8 | header enviado para o cliente. Se o timestamp do arquivo de cache 9 | não foi alterado desde a última visita, então um header "304 Not Modified" 10 | irá ser enviado ao invés do conteúdo. Isso funciona somente em arquivos 11 | de cache sem tags insert. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $debug_tpl 7 | 8 | C'est le nom du fichier template utilisé pour la 9 | console de débogage. Par défaut debug.tpl, 10 | il se situe dans SMARTY_DIR. 11 | 12 | 13 | Voir aussi 14 | $debugging et 15 | la console de débogage. 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-functions/api-unregister-postfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_postfilter 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_postfilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Используйте функцию для динамической дерегистрации постфильтра. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/fr/programmers/api-variables/variable-default-resource-type.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <!-- EN-Revision: 1.2 Maintainer: didou Status: ready --> 4 | 5 | <sect1 id="variable.default.resource.type"> 6 | <title>$default_resource_type 7 | 8 | Ceci dit à smarty quel type de ressource utiliser implicitement. La valeur 9 | par défaut est file, signifiant que 10 | $smarty->display('index.tpl') et 11 | $smarty->display('file:index.tpl') sont la même chose. Voyez le chapitre 12 | ressource pour plus de détails. 13 | 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-block.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_block 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_block</methodname> 12 | <methodparam><type>string</type><parameter>name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare dinamicamente una funzione plugin 16 | per i blocchi. Passate in <parameter>name</parameter> il 17 | nome della funzione di blocco. 18 | </para> 19 | </refsect1> 20 | </refentry> 21 | <!-- Keep this comment at the end of the file 22 | Local variables: 23 | mode: sgml 24 | sgml-omittag:t 25 | sgml-shorttag:t 26 | sgml-minimize-attributes:nil 27 | sgml-always-quote-attributes:t 28 | sgml-indent-step:1 29 | sgml-indent-data:t 30 | indent-tabs-mode:nil 31 | sgml-parent-document:nil 32 | sgml-default-dtd-file:"../../../../manual.ced" 33 | sgml-exposed-tags:nil 34 | sgml-local-catalogs:nil 35 | sgml-local-ecat-files:nil 36 | End: 37 | vim600: syn=xml fen fdm=syntax fdl=2 si 38 | vim: et tw=78 syn=sgml 39 | vi: ts=1 sw=1 40 | --> 41 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-config-dir.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <sect1 id="variable.config.dir"> 4 | <title>$config_dir 5 | 6 | Questa è la directory usata per memorizzare i file di configurazione 7 | usati nei template. Il default è "./configs2, che significa 8 | che Smarty cercherà la directory dei file di configurazione 9 | nella stessa directory dello script php in esecuzione. 10 | 11 | 12 | Nota tecnica 13 | 14 | E' sconsigliato mettere questa directory sotto la 15 | document root del web server. 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_read_hidden 6 | 7 | Se configurado para true, esconde seções (nomes de seções começados com um período) 8 | no arquivo de configuração podem ser lidos do template. Tipicamente você deixaria 9 | isto como false, desta forma você pode armazenar dados sensitivos no arquivo de configuração 10 | como um parâmetro de banco de 11 | dados e sem preocupar-se sobre o template carregá-los. false é o padrão. 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-variables/variable-default-modifiers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $default_modifiers 6 | 7 | Isso é um array de modificadores implicitamente aplicados par cada 8 | variável no template. Por Exemplo, para cada variável HTML-escape por padrão, 9 | use o array('escape:"htmlall"'); Para fazer a variável isenta para modificadores 10 | padrão, passe o modificador especial "smarty" com um valor de parâmetro "nodefaults" 11 | modificando isso, como 12 | {$var|smarty:nodefaults}. 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/it/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $config_read_hidden 5 | 6 | Se impostato a true, le sezioni nascoste (col nome che inizia con un 7 | punto) dei file di configurazione possono essere lette dai template. 8 | Tipicamente lascerete questo valore a false, in modo da poter memorizzare 9 | dati sensibili nei file di configurazione (ad esempio parametri per 10 | l'accesso a un database) senza preoccuparvi che vengano caricati sul 11 | template. false per default. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-functions/api-unregister-outputfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_outputfilter 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_outputfilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Используйте функцию для динамической дерегистрации фильтра вывода. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-use-sub-dirs.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2761 $ --> 3 | <!-- EN-Revision: 0 Maintainer: tony2001 Status: ready --> 4 | <sect1 id="variable.use.sub.dirs"> 5 | <title>$use_sub_dirs 6 | 7 | Установите это в false если ваше окружение PHP не разрешает создание директорий 8 | от имени Smarty. Поддиректории более эффективны, так что используйте их, 9 | если можете. 10 | 11 | 12 | Техническое замечание 13 | 14 | Начиная с версии Smarty 2.6.2, значением по умолчанию для use_sub_dirs является false. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-debug-template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debug_tpl 6 | 7 | これは、デバッギングコンソールで使うテンプレートファイルの名前です。 8 | デフォルトの名前は debug.tpl で、 9 | 場所は SMARTY_DIR にあります。 11 | 12 | 13 | $debugging 14 | および 15 | デバッギングコンソール 16 | の節も参照ください。 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /docs/de/programmers/api-functions/api-unregister-prefilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_prefilter ('pre'-Filter deaktiviern) 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_prefilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Wird verwendet, um registrierte 'pre'-Filter auszuschalten. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/es/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <sect1 id="variable.config.read.hidden"> 4 | <title>$config_read_hidden 5 | 6 | Si es asignado true, esconde secciones (nombres de secciones comenzando con 7 | un periodo) en el archivo de configuración 8 | pueden ser leidos del template. Tipicamente desearia esto como false, de esta 9 | forma usted puede almacenar datos sensibles en el archivo de configuración 10 | como un parámetro de base de datos y sin preocuparse que el template los carge. 11 | false es el default. 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /docs/ja/programmers/advanced-features/advanced-features-streams.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ストリーム 6 | 7 | ストリームを使って変数をコールすることもできます。 8 | {$foo:bar} は、foo://bar ストリームを使ってテンプレート変数を取得します。 9 | 10 | 11 | ストリーム変数 12 | PHP のストリームを、テンプレート変数リソースとしてテンプレート内から使います。 13 | 14 | 17 | 18 | 19 | 20 | テンプレートリソース 21 | も参照ください。 22 | 23 | 24 | 25 | 45 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-config-dir.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_dir 6 | 7 | Каталог для хранения конфигурационных файлов, используемых 8 | в шаблонах. По умолчанию установлено в "./configs", т.е. поиск 9 | каталога с конфигурационными файлами будет производиться в том 10 | же каталоге, в котором выполняется скрипт. 11 | 12 | 13 | Техническое замечание 14 | 15 | Не рекомендуется помещать этот каталог внутри корневого каталога документов 16 | веб-сервера. 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /docs/ru/programmers/api-variables/variable-config-read-hidden.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $config_read_hidden 6 | 7 | Если установлено в true, скрытые разделы (имеющие имя, начинающиеся с точки) 8 | в конфигурационных файлах могут быть доступными из шаблонов. Как правило, 9 | следует устанавливать значение этого параметра в false: в этом случае вы 10 | можете хранить важные данные (например, параметры подключения к базе данных) 11 | в конфигурационных файлах, не беспокоясь, что они будут загружены в шаблон. 12 | По умолчанию false. 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /docs/de/programmers/api-functions/api-unregister-postfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_postfilter ('post'-Filter deaktivieren) 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_postfilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Wird verwendet, um registrierte 'post'-Filter auszuschalten. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/en/programmers/api-variables/variable-debug-template.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision$ --> 3 | <sect1 id="variable.debug_template"> 4 | <title>$debug_tpl 5 | 6 | This is the name of the template file used for the debugging console. By 7 | default, it is named debug.tpl and is 8 | located in the SMARTY_DIR. 10 | 11 | 12 | See also 13 | $debugging 14 | and the 15 | debugging console section. 16 | 17 | 18 | 38 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-clear-all-assign.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | clear_all_assign 6 | 7 | 8 | void clear_all_assign 9 | 10 | 11 | 12 | 13 | Isso limpa o valor de todas as variáveis fixadas. 14 | 15 | 16 | clear_all_assign 17 | 18 | // clear all assigned variables 19 | $smarty->clear_all_assign(); 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/de/programmers/api-variables/variable-debug-tpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $debug_tpl 6 | 7 | Definiert den Namen des für die Debugging Konsole verwendeten Template. 8 | Normalerweise lautet er "debug.tpl" und befindet sich im 9 | SMARTY_DIR Verzeichnis. 10 | 11 | 12 | 13 | Siehe auch 14 | $debugging 15 | und 16 | Debugging Konsole 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-template-exists.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | template_exists 6 | 7 | 8 | 9 | 10 | <methodsynopsis> 11 | <type>bool</type><methodname>template_exists</methodname> 12 | <methodparam><type>string</type><parameter>template</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Questa funzione verifica se il template specificato esiste. Accetta 16 | il percorso del template sul filesystem oppure una stringa che 17 | identifica la risorsa del template. 18 | </para> 19 | </refsect1> 20 | </refentry> 21 | <!-- Keep this comment at the end of the file 22 | Local variables: 23 | mode: sgml 24 | sgml-omittag:t 25 | sgml-shorttag:t 26 | sgml-minimize-attributes:nil 27 | sgml-always-quote-attributes:t 28 | sgml-indent-step:1 29 | sgml-indent-data:t 30 | indent-tabs-mode:nil 31 | sgml-parent-document:nil 32 | sgml-default-dtd-file:"../../../../manual.ced" 33 | sgml-exposed-tags:nil 34 | sgml-local-catalogs:nil 35 | sgml-local-ecat-files:nil 36 | End: 37 | vim600: syn=xml fen fdm=syntax fdl=2 si 38 | vim: et tw=78 syn=sgml 39 | vi: ts=1 sw=1 40 | --> 41 | -------------------------------------------------------------------------------- /docs/it/programmers/api-functions/api-unregister-compiler-function.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision: 2972 $ --> 3 | <refentry id="api.unregister.compiler.function"> 4 | <refnamediv> 5 | <refname>unregister_compiler_function</refname> 6 | <refpurpose></refpurpose> 7 | </refnamediv> 8 | <refsect1> 9 | <title /> 10 | <methodsynopsis> 11 | <type>void</type><methodname>unregister_compiler_function</methodname> 12 | <methodparam><type>string</type><parameter>name</parameter></methodparam> 13 | </methodsynopsis> 14 | <para> 15 | Usatela per eliminare dinamicamente una funzione di compilazione. 16 | Passate in <parameter>name</parameter> il nome della funzione. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | -------------------------------------------------------------------------------- /docs/ja/programmers/api-variables/variable-cache-locking.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- $Revision$ --> 3 | <sect1 id="variable.cache.locking"> 4 | <title>$cache_locking 5 | 6 | Cache locking avoids concurrent cache generation. This means resource intensive pages can be generated only once, 7 | even if they've been requested multiple times in the same moment. 8 | 9 | 10 | Cache locking is disabled by default. To enable it set $cache_locking to &true;. 11 | 12 | 13 | See also 14 | $locking_timeout 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/pt_BR/programmers/api-functions/api-unregister-compiler-function.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unregister_compiler_function 6 | 7 | 8 | void unregister_compiler_function 9 | string name 10 | 11 | 12 | 13 | Use essa função para desregistrar uma função de compilador. Passe 14 | o nome da função de compilador. 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/de/designers/language-modifiers/language-modifier-lower.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | lower (in Kleinbuchstaben schreiben) 6 | 7 | Wird verwendet um eine Zeichenkette in Kleinbuchstaben auszugeben. 8 | 9 | 10 | lower (in Kleinbuchstaben schreiben) 11 | 12 | {$artikelTitel} 13 | {$artikelTitel|lower} 14 | 15 | AUSGABE: 16 | 17 | In Kalifornien wurde ein Hund in das Wählerverzeichnis eingetragen. 18 | in kalifornien wurde ein hund in das wählerverzeichnis eingetragen. 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /docs/de/programmers/api-functions/api-unregister-outputfilter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | unregister_outputfilter (Ausgabefilter deaktivieren) 7 | 8 | 9 | 10 | 11 | <methodsynopsis> 12 | <type>void</type><methodname>unregister_outputfilter</methodname> 13 | <methodparam><type>string</type><parameter>function_name</parameter></methodparam> 14 | </methodsynopsis> 15 | <para> 16 | Wird verwendet, um registrierte Ausgabefilter auszuschalten. 17 | </para> 18 | </refsect1> 19 | </refentry> 20 | <!-- Keep this comment at the end of the file 21 | Local variables: 22 | mode: sgml 23 | sgml-omittag:t 24 | sgml-shorttag:t 25 | sgml-minimize-attributes:nil 26 | sgml-always-quote-attributes:t 27 | sgml-indent-step:1 28 | sgml-indent-data:t 29 | indent-tabs-mode:nil 30 | sgml-parent-document:nil 31 | sgml-default-dtd-file:"../../../../manual.ced" 32 | sgml-exposed-tags:nil 33 | sgml-local-catalogs:nil 34 | sgml-local-ecat-files:nil 35 | End: 36 | vim600: syn=xml fen fdm=syntax fdl=2 si 37 | vim: et tw=78 syn=sgml 38 | vi: ts=1 sw=1 39 | --> 40 | --------------------------------------------------------------------------------