mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-06 19:34:27 +02:00
sync with en
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
<!-- $Revision$ -->
|
<!-- $Revision$ -->
|
||||||
<!-- EN-Revision: 1.2 Maintainer: andreas Status: ready -->
|
<!-- EN-Revision: 1.3 Maintainer: andreas Status: ready -->
|
||||||
<sect1 id="language.function.html.image">
|
<sect1 id="language.function.html.image">
|
||||||
<title>html_image (Ausgabe von HTML-IMG Tag)</title>
|
<title>html_image (Ausgabe von HTML-IMG Tag)</title>
|
||||||
<informaltable frame="all">
|
<informaltable frame="all">
|
||||||
@@ -27,13 +27,6 @@
|
|||||||
<entry><emphasis>n/a</emphasis></entry>
|
<entry><emphasis>n/a</emphasis></entry>
|
||||||
<entry>Name/Pfad zum Bild</entry>
|
<entry>Name/Pfad zum Bild</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
|
||||||
<entry>border</entry>
|
|
||||||
<entry>string</entry>
|
|
||||||
<entry>Nein</entry>
|
|
||||||
<entry><emphasis>0</emphasis></entry>
|
|
||||||
<entry>Stärke des Rahmens</entry>
|
|
||||||
</row>
|
|
||||||
<row>
|
<row>
|
||||||
<entry>height</entry>
|
<entry>height</entry>
|
||||||
<entry>string</entry>
|
<entry>string</entry>
|
||||||
@@ -87,7 +80,7 @@
|
|||||||
wird um das Bild ein <a href="LINKVALUE"><a> Tag erzeugt.
|
wird um das Bild ein <a href="LINKVALUE"><a> Tag erzeugt.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Alle weiteren Paarameter werden als Name/Wert Paare (Attribute) im <img>-Tag ausgegeben.
|
Alle weiteren Parameter werden als Name/Wert Paare (Attribute) im <img>-Tag ausgegeben.
|
||||||
</para>
|
</para>
|
||||||
<note>
|
<note>
|
||||||
<title>Technische Bemerkung</title>
|
<title>Technische Bemerkung</title>
|
||||||
@@ -124,9 +117,9 @@ $smarty->display('index.tpl');
|
|||||||
</para>
|
</para>
|
||||||
<screen>
|
<screen>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<img src="pumpkin.jpg" alt="" border="0" width="44" height="68" />
|
<img src="pumpkin.jpg" alt="" width="44" height="68" />
|
||||||
<img src="/path/from/docroot/pumpkin.jpg" alt="" border="0" width="44" height="68" />
|
<img src="/path/from/docroot/pumpkin.jpg" alt="" width="44" height="68" />
|
||||||
<img src="../path/relative/to/currdir/pumpkin.jpg" alt="" border="0" width="44" height="68" />
|
<img src="../path/relative/to/currdir/pumpkin.jpg" alt="" width="44" height="68" />
|
||||||
]]>
|
]]>
|
||||||
</screen>
|
</screen>
|
||||||
</example>
|
</example>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
<!-- $Revision$ -->
|
<!-- $Revision$ -->
|
||||||
<!-- EN-Revision: 1.1 Maintainer: andreas Status: ready -->
|
<!-- EN-Revision: 1.3 Maintainer: andreas Status: ready -->
|
||||||
<sect1 id="language.function.html.radios">
|
<sect1 id="language.function.html.radios">
|
||||||
<title>html_radios (Ausgabe von HTML-RADIO Tags)</title>
|
<title>html_radios (Ausgabe von HTML-RADIO Tags)</title>
|
||||||
<informaltable frame="all">
|
<informaltable frame="all">
|
||||||
@@ -70,6 +70,9 @@
|
|||||||
Elemente erstellt und kümmert sich darum welche Elemente ausgewählt sind.
|
Elemente erstellt und kümmert sich darum welche Elemente ausgewählt sind.
|
||||||
Erforderliche Attribute sind Wert/Ausgabe oder Options. Die Ausgabe ist XHTML kompatibel
|
Erforderliche Attribute sind Wert/Ausgabe oder Options. Die Ausgabe ist XHTML kompatibel
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
|
Alle weiteren Parameter werden als Name/Wert Paare (Attribute) in jedem der <input>-Tags ausgegeben.
|
||||||
|
</para>
|
||||||
<example>
|
<example>
|
||||||
<title>html_radios</title>
|
<title>html_radios</title>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
@@ -110,7 +113,7 @@ index.tpl:
|
|||||||
AUSGABE: (beider Beispiele)
|
AUSGABE: (beider Beispiele)
|
||||||
|
|
||||||
<input type="radio" name="id[]" value="1000">Joe Schmoe<br />
|
<input type="radio" name="id[]" value="1000">Joe Schmoe<br />
|
||||||
<input type="radio" name="id[]" value="1001" checked="checked"><br />
|
<input type="radio" name="id[]" value="1001" checked="checked">Jack Smith<br />
|
||||||
<input type="radio" name="id[]" value="1002">Jane Johnson<br />
|
<input type="radio" name="id[]" value="1002">Jane Johnson<br />
|
||||||
<input type="radio" name="id[]" value="1003">Charlie Brown<br /></programlisting>
|
<input type="radio" name="id[]" value="1003">Charlie Brown<br /></programlisting>
|
||||||
</example>
|
</example>
|
||||||
|
Reference in New Issue
Block a user