mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			109 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="iso-8859-1"?>
 | |
| <!-- $Revision$ -->
 | |
| <refentry id="api.display">
 | |
|  <refnamediv>
 | |
|   <refname>display()</refname>
 | |
|   <refpurpose>Despliega el Template</refpurpose>
 | |
|  </refnamediv>
 | |
|  <refsect1>
 | |
|   <title>Descripción </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>
 | |
|    Este despliega el template diferente de <link
 | |
|     linkend="api.fetch">fetch()</link>. Cargando un tipo valido de path
 | |
|    <link linkend="template.resources">template resource</link>.
 | |
|    Como un segundo parámetro opcional, usted puede pasar un
 | |
|    identificador de cache.
 | |
|    Vea el <link linkend="caching">caching section</link> para mayor
 | |
|    información.
 | |
|   </para>
 | |
|   ¶meter.compileid;
 | |
|   <example>
 | |
|    <title>display()</title>
 | |
|    <programlisting role="php">
 | |
| <![CDATA[
 | |
| <?php
 | |
| include("Smarty.class.php");
 | |
| $smarty = new Smarty;
 | |
| $smarty->caching = true;
 | |
| 
 | |
| // only do db calls if cache doesn't exist
 | |
| if(!$smarty->is_cached("index.tpl")) {
 | |
| 
 | |
|   // dummy up some data
 | |
|   $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);
 | |
| 
 | |
| }
 | |
| 
 | |
| // display the output
 | |
| $smarty->display("index.tpl");
 | |
| ?>
 | |
| ]]>
 | |
|    </programlisting>
 | |
|   </example>
 | |
|   <para>
 | |
|    Use la sintaxis <link linkend="template.resources">template resources</link>
 | |
|    para mostrar archivos fuera del directorio 
 | |
|    <link linkend="variable.template.dir">$template_dir</link>.
 | |
|   </para>
 | |
|   <example>
 | |
|    <title>Ejemplos de recursos de la función display</title>
 | |
|    <programlisting role="php">
 | |
| <![CDATA[
 | |
| <?php
 | |
| // absolute filepath
 | |
| $smarty->display('/usr/local/include/templates/header.tpl');
 | |
| 
 | |
| // absolute filepath (same thing)
 | |
| $smarty->display('file:/usr/local/include/templates/header.tpl');
 | |
| 
 | |
| // windows absolute filepath (MUST use "file:" prefix)
 | |
| $smarty->display('file:C:/www/pub/templates/header.tpl');
 | |
| 
 | |
| // include from template resource named "db"
 | |
| $smarty->display('db:header.tpl');
 | |
| ?>
 | |
| ]]>
 | |
|    </programlisting>
 | |
|   </example>
 | |
|     <para>
 | |
|      Ver también <link linkend="api.fetch">fetch()</link> y
 | |
|      <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
 | |
| -->
 |