source: extensions/GooglePlusOne/admin.tpl @ 13741

Last change on this file since 13741 was 11600, checked in by mistic100, 13 years ago

Create GooglePlusOne (Google+1) extension
(based on TweetThis)

File size: 1.9 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>
11        <td><label>
12          <img src="{$GPLUS1_PATH}images/small.png"/>
13          <input type="radio" name="button_size" value="small" {if $button_size == 'small'}checked="checked"{/if}/>
14        </label></td>
15        <td><label>
16          <img src="{$GPLUS1_PATH}images/medium.png"/>
17          <input type="radio" name="button_size" value="medium" {if $button_size == 'medium'}checked="checked"{/if}/>
18        </label></td>
19      </tr>
20      <tr>
21        <td><label>
22          <img src="{$GPLUS1_PATH}images/standard.png"/>
23          <input type="radio" name="button_size" value="standard" {if $button_size == 'standard'}checked="checked"{/if}/>
24        </label></td>
25        <td><label>
26          <img src="{$GPLUS1_PATH}images/tall.png"/>
27          <input type="radio" name="button_size" value="tall" {if $button_size == 'tall'}checked="checked"{/if}/>
28        </label></td>
29      </tr>
30     
31      <tr class="property">
32        <td>
33          {'Button position on picture page'|@translate}
34        </td>
35        <td>
36          <label><input type="radio" name="position" value="top" {if $position == 'top'}checked="checked"{/if}/> {'Top'|@translate}</label>
37          <label><input type="radio" name="position" value="bottom" {if $position == 'bottom'}checked="checked"{/if}/> {'Bottom'|@translate}</label>
38          <label><input type="radio" name="position" value="toolbar" {if $position == 'toolbar'}checked="checked"{/if}/> {'Toolbar'|@translate}</label>
39        </td>
40      </tr>
41      <tr class="submit">
42        <td colspan="2">
43          <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
44        </td>
45      </tr>
46    </table>
47
48</form>
Note: See TracBrowser for help on using the repository browser.