mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-29 03:11:36 +01:00
added italian docs. thanks to Gianluca Gillini
This commit is contained in:
68
docs/it/programmers/api-functions/api-register-modifier.xml
Normal file
68
docs/it/programmers/api-functions/api-register-modifier.xml
Normal file
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision$ -->
|
||||
<refentry id="api.register.modifier">
|
||||
<refnamediv>
|
||||
<refname>register_modifier</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title />
|
||||
<methodsynopsis>
|
||||
<type>void</type><methodname>register_modifier</methodname>
|
||||
<methodparam><type>string</type><parameter>name</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter>impl</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Potete usarla per registrare dinamicamente plugin modificatori.
|
||||
Passate il nome del modificatore del template, seguito dalla funzione
|
||||
PHP che lo implementa.
|
||||
</para>
|
||||
<para>
|
||||
Il parametro <parameter>impl</parameter>, contenente la funzione
|
||||
callback, pu<70> avere uno dei seguenti valori: (a) una stringa
|
||||
contenente il nome della funzione (b) un array nella forma
|
||||
<literal>array(&$oggetto, $metodo)</literal>, dove
|
||||
<literal>&$oggetto</literal> <20> il riferimento ad un
|
||||
oggetto e <literal>$metodo</literal> <20> una stringa contenente
|
||||
il nome di un metodo (c) un array nella forma
|
||||
<literal>array(&$classe, $metodo)</literal> dove
|
||||
<literal>$classe</literal> <20> un nome di classe e
|
||||
<literal>$metodo</literal> <20> un metodo statico della
|
||||
classe.
|
||||
</para>
|
||||
<example>
|
||||
<title>register_modifier</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
// mappiamo la funzione PHP stripslashes a un modificatore Smarty.
|
||||
|
||||
$smarty->register_modifier("sslash", "stripslashes");
|
||||
|
||||
// ora potete usare {$var|sslash} per togliere gli slash dalle variabili
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
||||
Reference in New Issue
Block a user