mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|   | <?xml version="1.0" encoding="iso-8859-1"?> | ||
|  | <!-- $Revision$ --> | ||
|  |    <sect1 id="language.syntax.functions"> | ||
|  |     <title>Functions</title> | ||
|  |     <para> | ||
|  |      Each Smarty tag either prints a | ||
|  |      <link linkend="language.variables">variable</link> or invokes some sort | ||
|  |      of function. Functions are processed and displayed by enclosing the | ||
|  |      function and its attributes into delimiters like so: {funcname | ||
|  |      attr1="val" attr2="val"}. | ||
|  |     </para> | ||
|  |     <example> | ||
|  |      <title>function syntax</title> | ||
|  |      <programlisting> | ||
|  | <![CDATA[ | ||
|  | {config_load file="colors.conf"} | ||
|  | 
 | ||
|  | {include file="header.tpl"} | ||
|  | 
 | ||
|  | {if $highlight_name} | ||
|  |     Welcome, <font color="{#fontColor#}">{$name}!</font> | ||
|  | {else} | ||
|  |     Welcome, {$name}! | ||
|  | {/if} | ||
|  | 
 | ||
|  | {include file="footer.tpl"} | ||
|  | ]]> | ||
|  |      </programlisting> | ||
|  |     </example> | ||
|  |     <para> | ||
|  |      Both built-in functions and custom functions have the same syntax in | ||
|  |      the templates. Built-in functions are the inner workings of Smarty, | ||
|  |      such as <command>if</command>, <command>section</command> and | ||
|  |      <command>strip</command>. They cannot be modified. Custom functions are | ||
|  |      additional functions implemented via plugins. They can be modified to | ||
|  |      your liking, or you can add new ones. <command>html_options</command> and | ||
|  |      <command>html_select_date</command> are examples of custom functions. | ||
|  |     </para> | ||
|  | </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 | ||
|  | --> |