Files
smarty/docs/en/designers/language-modifiers/language-modifier-cat.xml

85 lines
1.8 KiB
XML
Raw Normal View History

2004-04-13 08:46:28 +00:00
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
<sect1 id="language.modifier.cat">
<title>cat</title>
2005-09-13 17:53:50 +00:00
<para>
This value is concatenated to the given variable.
</para>
2004-04-13 08:46:28 +00:00
<informaltable frame="all">
<tgroup cols="5">
<colspec colname="param" align="center" />
<colspec colname="type" align="center" />
<colspec colname="required" align="center" />
<colspec colname="cat" align="center" />
<colspec colname="desc" />
<thead>
<row>
<entry>Parameter Position</entry>
<entry>Type</entry>
<entry>Required</entry>
<entry>Default</entry>
2004-04-13 08:46:28 +00:00
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>1</entry>
<entry>string</entry>
<entry>No</entry>
<entry><emphasis>empty</emphasis></entry>
<entry>This value to catenate to the given variable.</entry>
</row>
</tbody>
</tgroup>
</informaltable>
2005-09-13 17:53:50 +00:00
2004-04-13 08:46:28 +00:00
<example>
<title>cat</title>
<programlisting role="php">
<![CDATA[
2006-09-26 19:28:45 +00:00
<?php
2004-04-13 08:46:28 +00:00
$smarty->assign('articleTitle', "Psychics predict world didn't end");
2004-04-13 08:46:28 +00:00
?>
]]>
</programlisting>
<para>
Where template is:
2004-04-13 08:46:28 +00:00
</para>
<programlisting>
<![CDATA[
2006-09-26 19:28:45 +00:00
{$articleTitle|cat:' yesterday.'}
2004-04-13 08:46:28 +00:00
]]>
</programlisting>
<para>
2006-09-26 19:28:45 +00:00
Will output:
2004-04-13 08:46:28 +00:00
</para>
<screen>
2006-09-26 19:28:45 +00:00
<![CDATA[
2004-04-13 08:46:28 +00:00
Psychics predict world didn't end yesterday.
]]>
</screen>
</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
-->