source: extensions/LLGBO2/admin/settings.tpl

Last change on this file was 29841, checked in by gbo, 10 years ago

Fix some notice (when no title on frame) and compatibilty Back2Front

File size: 3.0 KB
Line 
1{combine_css path=$LLGBO_PATH|@cat:"css/look_like_gbo2_admin.css" order="+02"}
2
3{footer_script}
4jQuery('#llgbo-settings input[type=checkbox]').change(function() {
5  jQuery(this).prev().toggleClass('icon-check icon-check-empty');
6});
7jQuery('#llgbo-settings input[type=radio]').change(function() {
8  jQuery('#llgbo-settings input[type=radio][name='+ $(this).attr('name') +']').prev().toggleClass('icon-check icon-check-empty');
9});
10{/footer_script}
11
12<div class="titrePage">
13        <h2>Look Like GBo -> {$LLGBO_VERSION}</h2>
14</div>
15<h4 id ="gboh4">{'llgbo_admin_plugin_title'|@translate}</h4>
16<form method="post" action="" class="properties"  id="llgbo-settings">
17<fieldset>
18 <legend>{'llgo_global_setting'|translate}</legend>
19    <div id="configcontent">
20        <ul>
21                <li>   
22                        <label class="no-bold">
23                        <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.disp_frame}-empty{/if}"></span>
24                        <input type="checkbox"  name='llgbo_frame' {if $LLGBO_SETTINGS.disp_frame}checked="checked"{/if}>
25                        <span> {'llgbo_frame'|@translate} </span>
26                         </label>
27          </li>
28          <li>
29                        <label class="no-bold">
30                                <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.tooltip_disp}-empty{/if}"></span>
31                                <input type="checkbox"  name='llgbo_tooltipdisp'  {if $LLGBO_SETTINGS.tooltip_disp}checked="checked"{/if}>
32                                <span>{'llgbo_tooltip'|@translate} </span>
33                        </label>
34           </li>
35           <li>
36                        <label class="no-bold">
37                                <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.always_displayexif}-empty{/if}"></span>
38                                <input type="checkbox"  name='llgbo_alwaysdisplayexif'  {if $LLGBO_SETTINGS.always_displayexif}checked="checked"{/if}>
39                                <span>{'llgbo_alwaysdisplayexif'|@translate} </span>
40                        </label>
41           </li>
42           <li> 
43                        <label class="no-bold">
44                        <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.exif_underbt}-empty{/if}"></span>
45                                <input type="checkbox" name='llgbo_exifunderbt'  {if $LLGBO_SETTINGS.exif_underbt}checked="checked"{/if}>
46                                <span>{'llgbo_exifunderbt'|@translate} </span>
47                         </label>
48                </li>
49                <li>
50                        <label class="no-bold">
51                                <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.title_frame}-empty{/if}"></span>
52                                <input type="checkbox"  name='llgbo_titleframe'  {if $LLGBO_SETTINGS.title_frame}checked="checked"{/if}>       
53                                <span>{'llgbo_titleframe'|@translate} </span>
54                         </label>
55                </li>
56                <li>
57                        <label class="no-bold">
58                                <span class="graphicalCheckbox icon-check{if not $LLGBO_SETTINGS.manage_header}-empty{/if}"></span>
59                                <input type="checkbox"  name='llgbo_manageheader'  {if $LLGBO_SETTINGS.manage_header}checked="checked"{/if}>   
60                                <span>{'llgbo_header'|@translate}</span>
61                        </label>
62                </li>   
63        </ul>
64        </div>
65</fieldset>
66<p style="text-align: center;">
67<br />
68<input class="submit" type="submit" value="{'Reset_To_Default'|@translate}" name="reset"/> &nbsp;
69<input class="submit" type="submit" value="{'submit'|@translate}" name="submit" /></div>
70</p>
71
72
73{if !empty($GALLY)}
74<span>{'llgo_warning_setting'|@translate} </span>{/if}
75
76</form>
Note: See TracBrowser for help on using the repository browser.