2004-04-13 11:47:32 +00:00
|
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
|
<!-- $Revision$ -->
|
2004-05-23 15:50:53 +00:00
|
|
|
|
<!-- EN-Revision: 1.1 Maintainer: nobody Status: partial -->
|
|
|
|
|
<sect1 id="api.fetch">
|
|
|
|
|
<title>fetch</title>
|
|
|
|
|
<methodsynopsis>
|
|
|
|
|
<type>string</type><methodname>fetch</methodname>
|
|
|
|
|
<methodparam><type>string</type><parameter>template</parameter></methodparam>
|
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>cache_id</parameter></methodparam>
|
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>compile_id</parameter></methodparam>
|
|
|
|
|
</methodsynopsis>
|
|
|
|
|
<para>
|
|
|
|
|
Utilis<69>e pour renvoyer le r<>sultat du template plut(t que de l'afficher.
|
|
|
|
|
Il faut passer un type et un chemin de <link
|
|
|
|
|
linkend="template.resources">ressource template</link>
|
|
|
|
|
valides. Vous pouvez passer un identifiant de cache en deuxi<78>me
|
|
|
|
|
param<61>tre. Reportez-vous a la section <link linkend="caching">cache
|
|
|
|
|
</link> pour plus de renseignements.
|
|
|
|
|
</para>
|
|
|
|
|
<para>
|
|
|
|
|
Un troisi<73>me param<61>tre optionnel est un identifiant de compilation.
|
|
|
|
|
Cela s'av<61>re utile quand vous voulez compiler diff<66>rentes versions
|
|
|
|
|
d'un m<>me template, pour par exemple avoir des templates
|
|
|
|
|
compil<69>s s<>par<61>s pour diff<66>rents langages. Une autre utilit<69> de ce
|
|
|
|
|
param<61>tre est le cas o<> vous utilisez plus d'un $template_dir
|
|
|
|
|
mais un seul $compile_dir, car certains templates avec le m<>me nom
|
|
|
|
|
s'<27>craseraient entre eux. Vous pouvez aussi r<>gler la variable <link
|
|
|
|
|
linkend="variable.compile.id">$compile_id</link> une seule
|
|
|
|
|
fois plut(t que de la passer a chaque appel.
|
|
|
|
|
</para>
|
2004-04-13 11:47:32 +00:00
|
|
|
|
<example>
|
2004-05-23 15:50:53 +00:00
|
|
|
|
<title>fetch</title>
|
2004-04-13 11:47:32 +00:00
|
|
|
|
<programlisting>
|
|
|
|
|
include("Smarty.class.php");
|
|
|
|
|
$smarty = new Smarty;
|
|
|
|
|
|
|
|
|
|
$smarty->caching = true;
|
|
|
|
|
|
|
|
|
|
// ne fait un appel a la base de donn<6E>es que si le fichier
|
|
|
|
|
// de cache n'existe pas
|
|
|
|
|
if(!$smarty->is_cached("index.tpl"))
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
// quelques donn<6E>es
|
|
|
|
|
$address = "245 N 50th";
|
|
|
|
|
$db_data = array(
|
|
|
|
|
"City" => "Lincoln",
|
|
|
|
|
"State" => "Nebraska",
|
|
|
|
|
"Zip" = > "68502"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$smarty->assign("Name","Fred");
|
|
|
|
|
$smarty->assign("Address",$address);
|
|
|
|
|
$smarty->assign($db_data);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// r<>cup<75>re le r<>sultat
|
|
|
|
|
$output = $smarty->fetch("index.tpl");
|
|
|
|
|
|
|
|
|
|
// fait quelque chose avec $output
|
|
|
|
|
|
|
|
|
|
echo $output;</programlisting>
|
|
|
|
|
</example>
|
|
|
|
|
</sect1>
|
|
|
|
|
<!-- 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
|
2004-05-23 15:50:53 +00:00
|
|
|
|
-->
|