Files
smarty/docs/fr/programmers/api-functions/api-unregister-resource.xml

58 lines
1.4 KiB
XML
Raw Normal View History

2004-04-13 11:47:32 +00:00
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
2006-10-07 21:01:42 +00:00
<!-- EN-Revision: 1.4 Maintainer: yannick Status: ready -->
2005-12-05 21:15:38 +00:00
2004-12-26 17:02:12 +00:00
<refentry id="api.unregister.resource">
<refnamediv>
2005-12-05 21:15:38 +00:00
<refname>unregister_resource()</refname>
<refpurpose>D<EFBFBD>salloue dynamiquement un plugin ressource</refpurpose>
2004-12-26 17:02:12 +00:00
</refnamediv>
<refsect1>
2005-12-05 21:15:38 +00:00
<title>Description</title>
2004-12-26 17:02:12 +00:00
<methodsynopsis>
<type>void</type><methodname>unregister_resource</methodname>
<methodparam><type>string</type><parameter>name</parameter></methodparam>
</methodsynopsis>
<para>
Passez en param<61>tre le nom de la ressource.
</para>
<example>
2005-12-05 21:15:38 +00:00
<title>Exemple avec unregister_resource()</title>
2004-12-26 17:02:12 +00:00
<programlisting role="php">
<![CDATA[
<?php
2005-12-05 21:15:38 +00:00
2004-12-26 17:02:12 +00:00
$smarty->unregister_resource("db");
2005-12-05 21:15:38 +00:00
2004-12-26 17:02:12 +00:00
?>
]]>
</programlisting>
</example>
2005-12-05 21:15:38 +00:00
<para>
Voir aussi
2006-10-07 21:01:42 +00:00
<link linkend="api.register.resource"><varname>register_resource()</varname></link> et
2005-12-05 21:15:38 +00:00
les <link linkend="template.resources">ressources de template</link>.
</para>
2004-12-26 17:02:12 +00:00
</refsect1>
</refentry>
2005-12-05 21:15:38 +00:00
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
2005-12-05 21:15:38 +00:00
-->