1 | <div class="titrePage"> |
---|
2 | <h2>{'Customize'|@translate} vkbutton</h2> |
---|
3 | </div> |
---|
4 | <div> |
---|
5 | <form name="config_form" action="#" method="POST"> |
---|
6 | <input type="checkbox" name="modified"> |
---|
7 | |
---|
8 | <!--<fieldset> |
---|
9 | <legend> |
---|
10 | <input type="checkbox" name="show_like_button" {if isset($show_like_button) and $show_like_button}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"> |
---|
11 | {'like_buttons'|@translate} |
---|
12 | </legend> |
---|
13 | </fieldset>--> |
---|
14 | |
---|
15 | <fieldset> |
---|
16 | <legend> |
---|
17 | <input type="checkbox" name="show_main_button" {if isset($show_main_button) and $show_main_button}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"> |
---|
18 | {'button_for_all_site'|@translate} |
---|
19 | </legend> |
---|
20 | <table> |
---|
21 | <tr> |
---|
22 | <td><b>{'button_type'|@translate}</b></td> |
---|
23 | <td><select name="main_button_type" onChange="document.config_form.modified.checked=true;"> |
---|
24 | <option{if $main_button_type=='round'} selected{/if}>{'round'|@translate}</option> |
---|
25 | <option{if $main_button_type=='round_nocount'} selected{/if}>{'round_nocount'|@translate}</option> |
---|
26 | <option{if $main_button_type=='button'} selected{/if}>{'button'|@translate}</option> |
---|
27 | <option{if $main_button_type=='button_nocount'} selected{/if}>{'button_nocount'|@translate}</option> |
---|
28 | <option{if $main_button_type=='link'} selected{/if}>{'link'|@translate}</option> |
---|
29 | <option{if $main_button_type=='link_noicon'} selected{/if}>{'link_noicon'|@translate}</option> |
---|
30 | <option{if $main_button_type=='icon'} selected{/if}>{'icon'|@translate}</option> |
---|
31 | </select></td> |
---|
32 | </tr> |
---|
33 | <tr> |
---|
34 | <td><b>{'record_title'|@translate}</b></td> |
---|
35 | <td><input type="text" name="record_title" value="{$record_title}" onChange="document.config_form.modified.checked=true;"></td> |
---|
36 | </tr> |
---|
37 | <tr> |
---|
38 | <td><b>{'record_text'|@translate}</b></td> |
---|
39 | <td><input type="text" name="record_text" value="{$record_text}" onChange="document.config_form.modified.checked=true;"></td> |
---|
40 | </tr> |
---|
41 | <tr> |
---|
42 | <td><b>{'record_img'|@translate}</b></td> |
---|
43 | <td><input type="text" name="record_img" value="{$record_img}" onChange="document.config_form.modified.checked=true;"></td> |
---|
44 | </tr> |
---|
45 | </table> |
---|
46 | </fieldset> |
---|
47 | <fieldset> |
---|
48 | <legend> |
---|
49 | <input type="checkbox" name="show_pic_button" {if isset($show_pic_button) and $show_pic_button}checked="checked"{/if} onChange="document.config_form.modified.checked=true;"> |
---|
50 | {'button_for_pictures'|@translate} |
---|
51 | </legend> |
---|
52 | <table> |
---|
53 | <td><b>{'button_type'|@translate}</b></td> |
---|
54 | <td><select name="pic_button_type" onChange="document.config_form.modified.checked=true;"> |
---|
55 | <option{if $pic_button_type=='round'} selected{/if}>{'round'|@translate}</option> |
---|
56 | <option{if $pic_button_type=='round_nocount'} selected{/if}>{'round_nocount'|@translate}</option> |
---|
57 | <option{if $pic_button_type=='button'} selected{/if}>{'button'|@translate}</option> |
---|
58 | <option{if $pic_button_type=='button_nocount'} selected{/if}>{'button_nocount'|@translate}</option> |
---|
59 | <option{if $pic_button_type=='link'} selected{/if}>{'link'|@translate}</option> |
---|
60 | <option{if $pic_button_type=='link_noicon'} selected{/if}>{'link_noicon'|@translate}</option> |
---|
61 | <option{if $pic_button_type=='icon'} selected{/if}>{'icon'|@translate}</option> |
---|
62 | </select></td> |
---|
63 | </table> |
---|
64 | </fieldset> |
---|
65 | <input name="submit_cinfig" type="submit" value="{'Submit'|@translate}"> |
---|
66 | </form> |
---|