Files
smarty/docs/en/programmers/api-functions/api-display.xml

115 lines
3.0 KiB
XML
Raw Normal View History

2004-04-13 11:47:32 +00:00
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
2004-04-18 19:22:55 +00:00
<refentry id="api.display">
<refnamediv>
2005-05-27 16:25:02 +00:00
<refname>display()</refname>
<refpurpose>displays the template</refpurpose>
2004-04-18 19:22:55 +00:00
</refnamediv>
<refsect1>
2005-05-27 16:25:02 +00:00
<title>Description</title>
2004-04-18 19:22:55 +00:00
<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>
2005-05-27 16:25:02 +00:00
<methodparam choice="opt"><type>string</type><parameter>compile_id</parameter>
</methodparam>
2004-04-18 19:22:55 +00:00
</methodsynopsis>
<para>
2005-05-27 16:25:02 +00:00
This displays the template unlike
2006-09-26 23:29:02 +00:00
<link linkend="api.fetch"><varname>fetch()</varname></link>.
2005-05-27 16:25:02 +00:00
Supply a valid <link
2004-04-18 19:22:55 +00:00
linkend="template.resources">template resource</link>
type and path. As an optional second parameter, you can pass a
2006-09-26 23:29:02 +00:00
<parameter>$cache id</parameter>, see the
<link linkend="caching">caching section</link> for more information.
2004-04-18 19:22:55 +00:00
</para>
2004-04-20 11:37:05 +00:00
&parameter.compileid;
2004-04-18 19:22:55 +00:00
<example>
2005-05-27 16:25:02 +00:00
<title>display()</title>
2004-04-18 19:22:55 +00:00
<programlisting role="php">
2004-04-13 11:47:32 +00:00
<![CDATA[
<?php
2006-09-26 23:29:02 +00:00
include(SMARTY_DIR.'Smarty.class.php');
$smarty = new Smarty();
2004-04-13 11:47:32 +00:00
$smarty->caching = true;
// only do db calls if cache doesn't exist
2006-09-26 23:29:02 +00:00
if(!$smarty->is_cached('index.tpl')) {
2004-04-13 11:47:32 +00:00
2004-04-18 19:22:55 +00:00
// dummy up some data
$address = "245 N 50th";
$db_data = array(
"City" => "Lincoln",
"State" => "Nebraska",
"Zip" => "68502"
);
2004-04-13 11:47:32 +00:00
2004-04-18 19:22:55 +00:00
$smarty->assign("Name","Fred");
$smarty->assign("Address",$address);
2006-09-26 23:29:02 +00:00
$smarty->assign('data', $db_data);
2004-04-13 11:47:32 +00:00
}
// display the output
2006-09-26 23:29:02 +00:00
$smarty->display('index.tpl');
2004-04-13 11:47:32 +00:00
?>
]]>
2004-04-18 19:22:55 +00:00
</programlisting>
</example>
2006-09-26 23:29:02 +00:00
<example>
<title>Other display() template resource examples</title>
<para>
2004-04-18 19:22:55 +00:00
Use the syntax for <link
linkend="template.resources">template resources</link> to
2005-05-27 16:25:02 +00:00
display files outside of the
2006-09-26 23:29:02 +00:00
<link linkend="variable.template.dir">
<parameter>$template_dir</parameter></link> directory.
2004-04-18 19:22:55 +00:00
</para>
<programlisting role="php">
2004-04-13 11:47:32 +00:00
<![CDATA[
<?php
// absolute filepath
2005-05-27 16:25:02 +00:00
$smarty->display('/usr/local/include/templates/header.tpl');
2004-04-13 11:47:32 +00:00
// absolute filepath (same thing)
2005-05-27 16:25:02 +00:00
$smarty->display('file:/usr/local/include/templates/header.tpl');
2004-04-13 11:47:32 +00:00
// windows absolute filepath (MUST use "file:" prefix)
2005-05-27 16:25:02 +00:00
$smarty->display('file:C:/www/pub/templates/header.tpl');
2004-04-13 11:47:32 +00:00
// include from template resource named "db"
2005-05-27 16:25:02 +00:00
$smarty->display('db:header.tpl');
2004-04-13 11:47:32 +00:00
?>
]]>
2004-04-18 19:22:55 +00:00
</programlisting>
</example>
<para>
2006-09-26 23:29:02 +00:00
See also <link linkend="api.fetch"><varname>fetch()</varname></link> and
<link linkend="api.template.exists"><varname>template_exists()</varname></link>.
</para>
2004-04-18 19:22:55 +00:00
</refsect1>
</refentry>
2004-04-13 11:47:32 +00:00
<!-- 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-04-18 19:22:55 +00:00
-->
2005-05-27 16:25:02 +00:00