source: extensions/FacebookPlug/Plugin/tpl/buttons.tpl @ 8481

Last change on this file since 8481 was 8481, checked in by rub, 13 years ago

Upload button: check extension and reduce window size

  • Property svn:eol-style set to LF
File size: 2.2 KB
Line 
1{* --------------------------------------------------------------------------- *}
2{if $fbp.share_picture or $fbp.share_album}
3{if $FBP_SCRIPT_BASENAME == 'index'}<li>{/if}
4{* method 1 *}
5{*
6<a name="fb_share" type="icon" share_url="{$fbp_page.url}" title="{'Share on Facebook'|@translate}"></a>
7<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share"
8        type="text/javascript">
9</script>
10*}
11{* method 2 *}
12{*
13<a href="http://www.facebook.com/sharer.php?u={$fbp_page.url|@urlencode}" title="{'Share on Facebook'|@translate}" rel="nofollow" onclick="window.open(this.href, 'Facebook_Share','width=550,height=350,location=no,status=no,toolbar=no,scrollbars=no,menubar=no'); return false;"><img src="{$FBP_PATH|@cat:'/icon/share.png'}" class="button" alt="{'Share on Facebook'|@translate}"></a>
14*}
15{* method 3 *}
16<a href="{$fbp_page.url}" title="{'Share on Facebook'|@translate}" rel="nofollow"  onclick="share(this.href); return false;"><img src="{$FBP_PATH|@cat:'/icon/share.png'}" class="button" alt="{'Share on Facebook'|@translate}"></a>
17{literal}
18<script type="text/javascript">
19  //stream share method
20  function share(href)
21  {
22    FB.ui({method: 'stream.share', u: href});
23  }
24</script>
25{/literal}
26{if $FBP_SCRIPT_BASENAME == 'index'}</li>{/if}
27{/if} {* $fbp.share_picture or $fbp.share_album *}
28{* --------------------------------------------------------------------------- *}
29{if $fbp.upload_picture and $FBP_SCRIPT_BASENAME == 'picture' and in_array($fbp_page.url_image|get_extension|strtoupper, $fbp_page.available_upload_ext)}
30<a href="{$PIWIGO_FACEBOOK_UPLOAD_URL}?u={$fbp_page.url_image|@urlencode}&amp;pu={$fbp_page.url|@urlencode}&amp;pt={$PAGE_TITLE|@replace:'"':' '}&amp;gt={$GALLERY_TITLE|@replace:'"':' '}" title="{'Upload photo on Facebook'|@translate}" rel="nofollow" onclick="window.open(this.href, 'Facebook_Upload','width=250,height=50,location=no,status=no,toolbar=no,scrollbars=no,menubar=no'); return false;"><img src="{$FBP_PATH|@cat:'/icon/upload.png'}" class="button" alt="{'Share on Facebook'|@translate}"></a>
31{/if} {* $fbp.upload_picture  and $FBP_SCRIPT_BASENAME == 'picture' *}
32{* --------------------------------------------------------------------------- *}
Note: See TracBrowser for help on using the repository browser.