2004-04-13 11:47:32 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
|
<!-- $Revision$ -->
|
2006-03-16 13:24:04 +00:00
|
|
|
<!-- EN-Revision: 1.6 Maintainer: andreas Status: ready -->
|
2004-04-13 11:47:32 +00:00
|
|
|
<sect1 id="variable.plugins.dir">
|
2006-03-16 13:24:04 +00:00
|
|
|
<title>$plugins_dir</title>
|
2004-04-13 11:47:32 +00:00
|
|
|
<para>
|
2006-03-16 13:24:04 +00:00
|
|
|
Definiert das Verzeichnis (bzw. die Verzeichnisse) in dem Smarty die zu ladenden Plugins sucht.
|
|
|
|
|
Die Voreinstellung ist '<filename class="directory">"plugins"</filename>
|
|
|
|
|
unterhalb des <link linkend="constant.smarty.dir">SMARTY_DIR</link>-Verzeichnisses.
|
|
|
|
|
Wenn Sie einen relativen Pfad angeben, wird Smarty zuerst versuchen das Plugin von
|
|
|
|
|
<link linkend="constant.smarty.dir">SMARTY_DIR</link> aus zu erreichen,
|
|
|
|
|
danach relativ zum aktuellen Verzeichnis (mit 'cwd' - current working directory)
|
|
|
|
|
und zum Schluss in jedem Eintrag des PHP-'include_path'.
|
|
|
|
|
Wenn $plugins_dir ein Array von Verzeichnissen ist
|
|
|
|
|
wird Smarty jedes der angegebenen Verzeichnisse
|
|
|
|
|
in der angegebenen Reihenfolge nach dem Plugin durchsuchen.
|
2004-04-13 11:47:32 +00:00
|
|
|
</para>
|
2006-03-16 13:24:04 +00:00
|
|
|
<note>
|
|
|
|
|
<title>Technische Bemerkung</title>
|
|
|
|
|
<para>
|
|
|
|
|
Für optimale Performance sollte $plugins_dir entweder absolut
|
|
|
|
|
oder relativ zu SMARTY_DIR bzw. dem aktuellen Verzeichnis zu definieren.
|
|
|
|
|
Von der Definition des Verzeichnisses im PHP-'include_path' wird abgeraten.
|
|
|
|
|
</para>
|
|
|
|
|
</note>
|
|
|
|
|
|
|
|
|
|
<example>
|
|
|
|
|
<title>Ein lokales Plugin-Verzeichnis hinzufügen</title>
|
|
|
|
|
<programlisting role="php">
|
|
|
|
|
<![CDATA[
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$smarty->plugins_dir[] = 'includes/my_smarty_plugins';
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
]]>
|
|
|
|
|
</programlisting>
|
|
|
|
|
</example>
|
|
|
|
|
|
|
|
|
|
<example>
|
|
|
|
|
<title>Mehrere Verzeichnisse im $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
|
2004-07-16 14:32:31 +00:00
|
|
|
-->
|