mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-30 20:01:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="windows-1251"?>
 | |
| <!-- $Revision$ -->
 | |
| <!-- EN-Revision: 1.3 Maintainer: tony2001 Status: ready -->
 | |
| <refentry id="api.display">
 | |
|  <refnamediv>
 | |
|   <refname>display</refname>
 | |
|   <refpurpose></refpurpose>
 | |
|  </refnamediv>
 | |
|  <refsect1>
 | |
|   <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>
 | |
|   Ôóíêöèÿ îòîáðîæàåò øàáëîí. Óêàæèòå âåðíûé òèï <link
 | |
|   linkend="template.resources">ðåñóðñà øàáëîíîâ</link>
 | |
|   è ïóòü.  êà÷åñòâå íåîáÿçàòåëüíîãî âòîðîãî ïàðàìåòðà,
 | |
|   âû ìîæåòå ïåðåäàòü cache id. Ñìîòðèòå <link linkend="caching">ðàçäåë
 | |
|   "Êýøèðîâàíèå"</link> äëÿ äîïîëíèòåëüíîé èíôîðìàöèè.
 | |
|  </para>
 | |
|  ¶meter.compileid;
 | |
|  <example>
 | |
|   <title>display</title>
 | |
|    <programlisting role="php">
 | |
| <![CDATA[
 | |
| <?php
 | |
| include("Smarty.class.php");
 | |
| $smarty = new Smarty;
 | |
| $smarty->caching = true;
 | |
| 
 | |
| // îáðàùàåìñÿ ê áàçå òîëüêî â ñëó÷àå îòñóòñòâèÿ êýøà
 | |
| if(!$smarty->is_cached("index.tpl"))
 | |
| {
 | |
| 
 | |
|     // ïîäñòàâëÿåì íåêîòîðûå äàííûå
 | |
|     $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);
 | |
| 
 | |
| }
 | |
| 
 | |
| // îòîáðàæàåì ðåçóëüòàò
 | |
| $smarty->display("index.tpl");
 | |
| ?>
 | |
| ]]>
 | |
|   </programlisting>
 | |
|  </example>
 | |
|  <para>
 | |
|   Èñïîëüçóéòå ñèíòàêñèñ <link
 | |
|   linkend="template.resources">ðåñóðñîâ øàáëîíîâ</link> äëÿ
 | |
|   îòîáðàæåíèÿ ôàéëîâ, íàõîäÿùèõñÿ âíå äèðåêòîðèè $template_dir.
 | |
|  </para>
 | |
|  <example>
 | |
|   <title>Ïðèìåðû îòîáðàæåíèÿ øàáëîíîâ èç ðàçëè÷íûõ ðåñóðñîâ</title>
 | |
|    <programlisting role="php">
 | |
| <![CDATA[
 | |
| <?php
 | |
| // àáñîëþòíûé ôàéëîâûé ïóòü
 | |
| $smarty->display("/usr/local/include/templates/header.tpl");
 | |
| 
 | |
| // àáñîëþòíûé ôàéëîâûé ïóòü (òîæå ñàìîå)
 | |
| $smarty->display("file:/usr/local/include/templates/header.tpl");
 | |
| 
 | |
| // àáñîëþòíûé ïóòü Windows (ÎÁßÇÀÒÅËÜÍÎ èñïîëüçóéòå ïðåôèêñ "file:")
 | |
| $smarty->display("file:C:/www/pub/templates/header.tpl");
 | |
| 
 | |
| // âñòàâêà èç ðåñóðñà ïîä íàçâàíèåì "db"
 | |
| $smarty->display("db:header.tpl");
 | |
| ?>
 | |
| ]]>
 | |
|    </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
 | |
| -->
 |