source: extensions/Stereo/config.tpl @ 12523

Last change on this file since 12523 was 5556, checked in by pbra, 14 years ago

Stereo Plugin : v2.0.b added admin menu better help button placement ...

File size: 2.9 KB
Line 
1<div class="titrePage">
2        <h2>Stereo [{$stereo.version}]</h2>
3</div>
4<p>
5<h3>{'Stereo plugin configuration'|@translate}</h3>
6</p>
7<form method="post" action="" class="general">
8<fieldset>
9                <table style="width:70%;">
10                        <tr>
11                                <td style="width:50%;">
12                                        <span class="property">{'File extension'|@translate}</span>
13                                </td>
14                                <td style="width:50%;">
15                                        <input type="text" name="ext" value="{$stereo.ext}" />
16                                </td>
17                        </tr>
18                        <tr>
19                                <td style="width:50%;">
20                                        <span class="property">{'Fixed width'|@translate}</span>
21                                </td>
22                                <td style="width:50%;">
23                                        <input type="text" name="fixedwidth" value="{$stereo.fixedwidth}" />
24                                </td>
25                        </tr>
26                        <tr>
27                                <td style="width:50%;">
28                                        <span class="property">{'Fixed height'|@translate}</span>
29                                </td>
30                                <td style="width:50%;">
31                                        <input type="text" name="fixedheight" value="{$stereo.fixedheight}" />
32                                </td>
33                        </tr>
34                        <tr>
35                                <td style="width:50%;">
36                                        <span class="property">{'Allow full screen'|@translate}</span>
37                                </td>
38                                <td style="width:50%;">
39                                        <input type="checkbox" name="allowFullScreen" value="true" {if $stereo.allowFullScreen == "true"} checked="checked" {/if} />
40                                </td>
41                        </tr>
42                        <tr>
43                                <td style="width:50%;">
44                                        <span class="property">{'Show help'|@translate}</span>
45                                </td>
46                                <td style="width:50%;">
47                                        <input type="checkbox" name="showhelp" value="true" {if $stereo.showhelp == "true"}checked="checked" {/if} />
48                                </td>
49                        </tr>
50                </table>
51                <fieldset>
52                <legend>{'Help button position'|@translate}</legend>
53                        <table>
54                                <tr>
55                                        <td style="width:24.5%;">
56                                                <span class="property">{'Near'|@translate}</span>
57                                        </td>
58                                        <td style="width:24.5%;">
59                                                <input type="radio" value="navButtons" name="helpbuttonblock" {if ($stereo.helpbuttonblock=="navButtons")} checked="checked" {/if} title="{'Helpiconblock'|@translate}" />&nbsp;{'Navigation buttons'|@translate}
60                                        </td>
61                                        <td style="width:24.5%;">
62                                                <input type="radio" value="randomButtons" name="helpbuttonblock" {if ($stereo.helpbuttonblock=="randomButtons")} checked="checked" {/if}/>&nbsp;{'Other buttons'|@translate}
63                                        </td>
64                                </tr>
65                                <tr>
66                                        <td style="width:24.5%;">
67                                                <span class="property">{'Help button position'|@translate}</span>
68                                        </td>
69                                        <td style="width:24.5%;">
70                                                <input type="radio" value="right" name="helpbuttonposition" {if ($stereo.helpbuttonposition=="right")} checked="checked" {/if} title="{'Helpiconposition'|@translate}" />&nbsp;{'Right'|@translate}
71                                        </td>
72                                        <td style="width:24.5%;">
73                                                <input type="radio" value="left" name="helpbuttonposition" {if ($stereo.helpbuttonposition=="left")} checked="checked" {/if}/>&nbsp;{'Left'|@translate}
74                                        </td>
75                                </tr>
76                        </table>
77                </fieldset>     
78</fieldset>
79<p><input type="submit" value="{'Submit'|@translate}" name="submit" /></p>
80</form>
81       
82       
83       
84       
85       
Note: See TracBrowser for help on using the repository browser.