2004-04-13 11:47:32 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
<!-- $Revision$ -->
|
2004-04-18 19:22:55 +00:00
|
|
|
<refentry id="api.config.load">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>config_load</refname>
|
|
|
|
<refpurpose></refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title />
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>void</type><methodname>config_load</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>file</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>section</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
This loads config <parameter>file</parameter> data and assigns it to
|
|
|
|
the template. This works identical to the template <link
|
|
|
|
linkend="language.function.config.load">config_load</link>
|
|
|
|
function.
|
|
|
|
</para>
|
|
|
|
<note>
|
|
|
|
<title>Technical Note</title>
|
|
|
|
<para>
|
|
|
|
As of Smarty 2.4.0, assigned template variables are kept across
|
|
|
|
invocations of fetch() and display(). Config vars loaded from
|
|
|
|
config_load() are always global scope. Config files are also
|
|
|
|
compiled for faster execution, and respect the <link
|
|
|
|
linkend="variable.force.compile">force_compile</link> and <link
|
|
|
|
linkend="variable.compile.check">compile_check</link> settings.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
<example>
|
|
|
|
<title>config_load</title>
|
|
|
|
<programlisting role="php">
|
2004-04-13 11:47:32 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// load config variables and assign them
|
|
|
|
$smarty->config_load('my.conf');
|
|
|
|
|
|
|
|
// load a section
|
2004-04-18 19:22:55 +00:00
|
|
|
$smarty->config_load('my.conf', 'foobar');
|
2004-04-13 11:47:32 +00:00
|
|
|
?>
|
|
|
|
]]>
|
2004-04-18 19:22:55 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
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-18 19:22:55 +00:00
|
|
|
-->
|