]> git.wh0rd.org - tt-rss.git/blob - plugins/bookmarklets/init.php
use button-style links for bookmarklets
[tt-rss.git] / plugins / bookmarklets / init.php
1 <?php
2 class Bookmarklets extends Plugin {
3 private $host;
4
5 function about() {
6 return array(1.0,
7 "Easy feed subscription and web page sharing using bookmarklets",
8 "fox");
9 }
10
11 function init($host) {
12 $this->host = $host;
13
14 $host->add_hook($host::HOOK_PREFS_TAB, $this);
15 }
16
17 function hook_prefs_tab($args) {
18 if ($args == "prefFeeds") {
19
20 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Bookmarklets')."\">";
21
22 print "<p>" . __("Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it.") . "</p>";
23
24 $bm_subscribe_url = str_replace('%s', '', Pref_Feeds::subscribe_to_feed_url());
25
26 $confirm_str = str_replace("'", "\'", __('Subscribe to %s in Tiny Tiny RSS?'));
27
28 $bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
29
30 print "<p>";
31 print "<a href=\"$bm_url\" class='dijitButton'>" . __('Subscribe in Tiny Tiny RSS'). "</a>";
32 print "</p>";
33
34 print "<p>" . __("Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS") . "</p>";
35
36 print "<p>";
37
38 $bm_url = htmlspecialchars("javascript:(function(){var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='".get_self_url_prefix()."/public.php?op=sharepopup',l=d.location,e=encodeURIComponent,g=f+'&title='+((e(s))?e(s):e(document.title))+'&url='+e(l.href);function a(){if(!w.open(g,'t','toolbar=0,resizable=0,scrollbars=1,status=1,width=500,height=250')){l.href=g;}}a();})()");
39
40 print "<a href=\"$bm_url\" class='dijitButton'>" . __('Share with Tiny Tiny RSS'). "</a>";
41
42 print "</p>";
43
44 print "</div>"; #pane
45
46 }
47 }
48
49 function api_version() {
50 return 2;
51 }
52
53 }