source: extensions/pwgCumulus/template/admin_tags.tpl @ 27279

Last change on this file since 27279 was 27279, checked in by nikrou, 10 years ago

Fix issue with tag with an ampersand (need encoding)
Allow to choose width and height in menu (either null)

File size: 3.1 KB
Line 
1{combine_css path="$PWG_CUMULUS_PLUGIN_CSS/colorpicker.css"}
2
3{combine_script id="colorpicker" require="jquery" path="$PWG_CUMULUS_PLUGIN_JS/colorpicker.js"}
4{combine_script id="colorpicker.instance" require="colorpicker" path="$PWG_CUMULUS_PLUGIN_JS/colorpicker.instance.js"}
5
6<p>{'Animation configuration : size, tags colors, tags size'|@translate}</p>
7
8<form method="post" action="" class="general">
9  <fieldset>
10    <legend>{'Animation width and height'|@translate}</legend>
11    <p class="field">
12      <label>{'Width'|@translate}
13        <input type="text" name="pwg_cumulus_width" value="{$PWG_CUMULUS_WIDTH}">
14      </label>
15    </p>
16    <p class="field">
17      <label>{'Height'|@translate}
18      <input type="text" name="pwg_cumulus_height" value="{$PWG_CUMULUS_HEIGHT}">
19      </label>
20    </p>
21    <p class="info">({'Width or height can be null to allow animation using all the space'|@translate})</p>
22  </fieldset>
23
24  <fieldset>
25    <legend>{'Animation width and height in menu'|@translate}</legend>
26    <p class="field">
27      <label>{'Width'|@translate}
28        <input type="text" name="pwg_cumulus_width_in_menu" value="{$PWG_CUMULUS_WIDTH_IN_MENU}">
29      </label>
30    </p>
31    <p class="field">
32      <label>{'Height'|@translate}
33      <input type="text" name="pwg_cumulus_height_in_menu" value="{$PWG_CUMULUS_HEIGHT_IN_MENU}">
34      </label>
35    </p>
36    <p class="info">({'Width or height can be null to allow animation using all the space'|@translate})</p>
37  </fieldset>
38 
39  <fieldset>
40    <legend>{'Tags size'|@translate}</legend>
41    <p class="field">
42      <label>{'Coefficient'|@translate}
43        <input type="text" name="pwg_cumulus_coeff" value="{$PWG_CUMULUS_COEFF}">
44      </label>     
45    </p>
46  </fieldset>
47 
48  <fieldset>
49    <legend>{'Animation colors'|@translate}</legend>
50    <div id="picker" style="float: right;"></div>
51   
52    <p class="field">
53      <label>{'Transparent mode for background'|@translate}
54        <input type="checkbox" id="pwg_cumulus_mode_transparent" name="pwg_cumulus_mode_transparent" value="1"
55               {if $PWG_CUMULUS_MODE_TRANSPARENT} checked="checked"{/if}>
56      </label>
57      <span class="info">({'Check the checkbox to use transparent mode for background'|@translate})</span>
58    </p>
59    <p class="field" id="pwg_cumulus_p_bgcolor">
60      <label>{'Background color'|@translate}
61        <input class="pwg-picker" type="text" name="pwg_cumulus_bgcolor" value="{$PWG_CUMULUS_BGCOLOR}">
62      </label>     
63    </p>
64    <p class="field">
65      <label>{'Color 1'|@translate}
66        <input class="pwg-picker" type="text" name="pwg_cumulus_color1" value="{$PWG_CUMULUS_COLOR1}">
67      </label>     
68    </p>
69    <p class="field">
70    <label>{'Color 2'|@translate}
71      <input class="pwg-picker" type="text" name="pwg_cumulus_color2" value="{$PWG_CUMULUS_COLOR2}">
72    </label>     
73    </p>
74    <p class="field">
75      <label>{'Mouseover color'|@translate}
76        <input class="pwg-picker" type="text" name="pwg_cumulus_hicolor" value="{$PWG_CUMULUS_HICOLOR}">
77      </label>     
78    </p>
79  </fieldset>
80  <p><input class="submit" type="submit" name="submit" value="{'Submit'|@translate}"></p>
81</form>
82
Note: See TracBrowser for help on using the repository browser.