| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  | <?xml version="1.0" encoding="iso-8859-1"?> | 
					
						
							|  |  |  | <!-- $Revision$ --> | 
					
						
							|  |  |  |    <sect1 id="plugins.naming.conventions"> | 
					
						
							|  |  |  |     <title>Naming Conventions</title> | 
					
						
							|  |  |  |     <para> | 
					
						
							|  |  |  |      Plugin files and functions must follow a very specific naming | 
					
						
							|  |  |  |      convention in order to be located by Smarty. | 
					
						
							|  |  |  |     </para> | 
					
						
							|  |  |  |     <para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  |      <emphasis role="bold">plugin files</emphasis> must be named as follows: | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |      <blockquote> | 
					
						
							|  |  |  |       <para> | 
					
						
							|  |  |  |        <filename> | 
					
						
							|  |  |  |         <replaceable>type</replaceable>.<replaceable>name</replaceable>.php | 
					
						
							|  |  |  |        </filename> | 
					
						
							|  |  |  |       </para> | 
					
						
							|  |  |  |      </blockquote> | 
					
						
							|  |  |  |     </para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <itemizedlist> | 
					
						
							|  |  |  |     <listitem><para> | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |      Where <literal>type</literal> is one of these plugin types: | 
					
						
							|  |  |  |      <itemizedlist spacing="compact"> | 
					
						
							|  |  |  |       <listitem><simpara>function</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>modifier</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>block</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>compiler</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>prefilter</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>postfilter</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>outputfilter</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>resource</simpara></listitem> | 
					
						
							|  |  |  |       <listitem><simpara>insert</simpara></listitem> | 
					
						
							|  |  |  |      </itemizedlist> | 
					
						
							|  |  |  |     </para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  |     </listitem> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <listitem><para> | 
					
						
							|  |  |  |      And <literal>name</literal> should be a valid identifier; letters, | 
					
						
							|  |  |  |      numbers, and underscores only, see | 
					
						
							|  |  |  |      <ulink url="&url.php-manual;language.variables">php variables</ulink>. | 
					
						
							|  |  |  |     </para></listitem> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <listitem><para> | 
					
						
							|  |  |  |      Some examples: <filename>function.html_select_date.php</filename>, | 
					
						
							|  |  |  |      <filename>resource.db.php</filename>, | 
					
						
							|  |  |  |      <filename>modifier.spacify.php</filename>. | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |     </para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  |     </listitem> | 
					
						
							|  |  |  |     </itemizedlist> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |     <para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  |      <emphasis role="bold">plugin functions</emphasis> inside the PHP files must be named as follows: | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |      <blockquote> | 
					
						
							|  |  |  |       <para> | 
					
						
							|  |  |  |        <function>smarty_<replaceable>type</replaceable>_<replaceable>name</replaceable></function> | 
					
						
							|  |  |  |       </para> | 
					
						
							|  |  |  |      </blockquote> | 
					
						
							|  |  |  |     </para> | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <itemizedlist> | 
					
						
							|  |  |  |      <listitem><para> | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |      The meanings of <literal>type</literal> and <literal>name</literal> are | 
					
						
							| 
									
										
										
										
											2006-09-27 03:26:52 +00:00
										 |  |  |      the same as above. | 
					
						
							|  |  |  |     </para></listitem> | 
					
						
							|  |  |  |       <listitem><para> | 
					
						
							|  |  |  |      An example modifier name <varname>foo</varname> would be <literal>function smarty_modifier_foo()</literal>. | 
					
						
							|  |  |  |     </para></listitem> | 
					
						
							|  |  |  |     </itemizedlist> | 
					
						
							| 
									
										
										
										
											2004-04-13 11:47:32 +00:00
										 |  |  |     <para> | 
					
						
							|  |  |  |      Smarty will output appropriate error messages if the plugin file it | 
					
						
							|  |  |  |      needs is not found, or if the file or the plugin function are named | 
					
						
							|  |  |  |      improperly. | 
					
						
							|  |  |  |     </para> | 
					
						
							| 
									
										
										
										
											2004-04-14 15:53:39 +00:00
										 |  |  |    </sect1> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-14 15:53:39 +00:00
										 |  |  | --> |