2004-04-13 11:47:32 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
<!-- $Revision$ -->
|
|
|
|
<sect1 id="variable.plugins.dir">
|
|
|
|
<title>$plugins_dir</title>
|
|
|
|
<para>
|
2005-02-11 15:58:11 +00:00
|
|
|
This is the directory (or directories) where Smarty will look for the
|
2005-06-05 15:47:25 +00:00
|
|
|
plugins that it needs. Default is
|
|
|
|
<filename class="directory">"plugins"</filename> under the
|
2005-05-23 15:43:01 +00:00
|
|
|
<link linkend="constant.smarty.dir">SMARTY_DIR</link>. If you
|
|
|
|
supply a relative path, Smarty will first look under the
|
|
|
|
<link linkend="constant.smarty.dir">SMARTY_DIR</link>, then
|
2005-02-11 15:58:11 +00:00
|
|
|
relative to the cwd (current working directory), then relative to the PHP
|
|
|
|
include_path. If $plugins_dir is an array of directories, Smarty will
|
|
|
|
search for your plugin in each plugin directory in the order they are
|
|
|
|
given.
|
2004-04-13 11:47:32 +00:00
|
|
|
</para>
|
2005-06-05 15:47:25 +00:00
|
|
|
<note>
|
|
|
|
<title>Technical Note</title>
|
|
|
|
<para>
|
|
|
|
For best performance, do not setup your $plugins_dir to have to use
|
|
|
|
the PHP include path. Use an absolute pathname, or a path relative
|
|
|
|
to SMARTY_DIR or the cwd.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
|
|
|
|
<example>
|
|
|
|
<title>multiple $plugins_dir</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$smarty->plugins_dir = array(
|
|
|
|
'plugins', // the default under SMARTY_DIR
|
|
|
|
'/path/to/shared/plugins',
|
|
|
|
'../../includes/my/plugins'
|
|
|
|
);
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
|
2004-04-13 11:47:32 +00:00
|
|
|
</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
|
2005-02-11 15:58:11 +00:00
|
|
|
-->
|