source: extensions/GooglePlusOne/admin.tpl @ 15907

Last change on this file since 15907 was 15121, checked in by mistic100, 12 years ago

update for Piwigo 2.4
change previews with new G+1 appearance
add Annotation parameter

File size: 2.6 KB
Line 
1{combine_css path=$GPLUS1_PATH|@cat:"style.css"}
2
3<div class="titrePage">
4        <h2>Google+1</h2>
5</div>
6
7<form method="post" action="" class="properties" ENCTYPE="multipart/form-data"> 
8
9    <table class="gplus1_buttons">
10      <tr class="property">
11        <td>
12          {'Button size'|@translate}
13        </td>
14        <td></td>
15      </tr>
16      <tr>
17        <td><label>
18          15px
19          <img src="{$GPLUS1_PATH}images/small.png"/>
20          <input type="radio" name="button_size" value="small" {if $button_size == 'small'}checked="checked"{/if}/>
21        </label></td>
22        <td><label>
23          20px
24          <img src="{$GPLUS1_PATH}images/medium.png"/>
25          <input type="radio" name="button_size" value="medium" {if $button_size == 'medium'}checked="checked"{/if}/>
26        </label></td>
27      </tr>
28      <tr>
29        <td><label>
30          24px
31          <img src="{$GPLUS1_PATH}images/standard.png"/>
32          <input type="radio" name="button_size" value="standard" {if $button_size == 'standard'}checked="checked"{/if}/>
33        </label></td>
34        <td><label>
35          60px
36          <img src="{$GPLUS1_PATH}images/tall.png"/>
37          <input type="radio" name="button_size" value="tall" {if $button_size == 'tall'}checked="checked"{/if}/>
38        </label></td>
39      </tr>
40     
41      <tr class="property">
42        <td>
43          {'Button position on picture page'|@translate}
44        </td>
45        <td>
46          <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
47          <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
48          <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
49        </td>
50      </tr>
51     
52      <tr class="property">
53        <td>
54          {'Annotation'|@translate}
55        </td>
56        <td>
57          <label><input type="radio" name="annotation" value="none" {if $annotation == 'none'}checked="checked"{/if}/> {'None'|@translate}</label>
58          <label><input type="radio" name="annotation" value="bubble" {if $annotation == 'bubble'}checked="checked"{/if}/> {'Bubble'|@translate}</label>
59          <label><input type="radio" name="annotation" value="inline" {if $annotation == 'inline'}checked="checked"{/if}/> {'Inline text'|@translate}</label>
60        </td>
61      </tr>
62      <tr class="submit">
63        <td colspan="2">
64          <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
65        </td>
66      </tr>
67    </table>
68
69</form>
Note: See TracBrowser for help on using the repository browser.