mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			114 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="iso-8859-1"?>
 | 
						|
<!-- $Revision$ -->
 | 
						|
<!-- EN-Revision: 1.6 Maintainer: yannick Status: ready -->
 | 
						|
 | 
						|
<refentry id="api.display">
 | 
						|
 <refnamediv>
 | 
						|
  <refname>display()</refname>
 | 
						|
  <refpurpose>Affiche le template</refpurpose>
 | 
						|
 </refnamediv>
 | 
						|
 <refsect1>
 | 
						|
  <title>Description</title>
 | 
						|
  <methodsynopsis>
 | 
						|
   <type>void</type><methodname>display</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ée pour afficher un template. Il faut fournir un type et un
 | 
						|
   chemin de <link
 | 
						|
   linkend="template.resources">ressource template</link>
 | 
						|
   valides. Vous pouvez passer en second paramètre un identifiant
 | 
						|
   de fichier de $cache. Reportez-vous à la section
 | 
						|
   <link linkend="caching">cache</link> pour plus de renseignements.
 | 
						|
  </para>
 | 
						|
  ¶meter.compileid;
 | 
						|
  <example>
 | 
						|
   <title>Exemple avec display()</title>
 | 
						|
   <programlisting role="php">
 | 
						|
<![CDATA[
 | 
						|
<?php
 | 
						|
include("Smarty.class.php");
 | 
						|
$smarty = new Smarty;
 | 
						|
$smarty->caching = true;
 | 
						|
 | 
						|
// ne fait un appel à la base de données que si le fichier
 | 
						|
// de cache n'existe pas
 | 
						|
if(!$smarty->is_cached("index.tpl")) {
 | 
						|
 | 
						|
    // quelques données
 | 
						|
    $address = "245 N 50th";
 | 
						|
    $db_data = array(
 | 
						|
                       "Ville" => "Lincoln",
 | 
						|
                       "Pays" => "Nebraska",
 | 
						|
                       "Code postal" = > "68502"
 | 
						|
     );
 | 
						|
 | 
						|
    $smarty->assign("Nom","Fred");
 | 
						|
    $smarty->assign("Adresse",$address);
 | 
						|
    $smarty->assign($db_data);
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
// affichage
 | 
						|
$smarty->display("index.tpl");
 | 
						|
?>
 | 
						|
]]>
 | 
						|
   </programlisting>
 | 
						|
  </example>
 | 
						|
  <para>
 | 
						|
   Utilisez la syntaxe des <link
 | 
						|
   linkend="template.resources">ressources templates</link>
 | 
						|
   pour afficher des fichiers en-dehors du répertoire
 | 
						|
   <link linkend="variable.template.dir">$template_dir</link>.
 | 
						|
  </para>
 | 
						|
  <example>
 | 
						|
   <title>Exemples de fonction d'affichage de ressources templates</title>
 | 
						|
   <programlisting role="php">
 | 
						|
<![CDATA[
 | 
						|
<?php
 | 
						|
// chemin absolu
 | 
						|
$smarty->display('/usr/local/include/templates/header.tpl');
 | 
						|
 | 
						|
// chemin absolu (mêm chose)
 | 
						|
$smarty->display('file:/usr/local/include/templates/header.tpl');
 | 
						|
 | 
						|
// chemin absolu Windows (on DOIT utiliser le préfixe "file:")
 | 
						|
$smarty->display('file:C:/www/pub/templates/header.tpl');
 | 
						|
 | 
						|
// inclue à partir de la ressource template nommée "db"
 | 
						|
$smarty->display('db:header.tpl');
 | 
						|
?>
 | 
						|
]]>
 | 
						|
   </programlisting>
 | 
						|
  </example>
 | 
						|
  <para>
 | 
						|
   Voir aussi
 | 
						|
   <link linkend="api.fetch">fetch()</link> et
 | 
						|
   <link linkend="api.template.exists">template_exists()</link>.
 | 
						|
  </para>
 | 
						|
 </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
 | 
						|
 --> |