aboutsummaryrefslogtreecommitdiffstats
path: root/mod/ffsapi.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-04 17:47:24 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-04 17:47:24 -0800
commitf4a9529968fedb65289d49ec0901739df17df698 (patch)
treec2443f62ece7428b2d63a577f688b3746b505608 /mod/ffsapi.php
parentd15be53034c1c2e1d86a4e60400ca707c5b1c403 (diff)
downloadvolse-hubzilla-f4a9529968fedb65289d49ec0901739df17df698.tar.gz
volse-hubzilla-f4a9529968fedb65289d49ec0901739df17df698.tar.bz2
volse-hubzilla-f4a9529968fedb65289d49ec0901739df17df698.zip
Firefox Share API provider interface (first cut, only has share ability)
Diffstat (limited to 'mod/ffsapi.php')
-rw-r--r--mod/ffsapi.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/mod/ffsapi.php b/mod/ffsapi.php
new file mode 100644
index 000000000..15cc8365f
--- /dev/null
+++ b/mod/ffsapi.php
@@ -0,0 +1,64 @@
+<?php
+
+
+function ffsapi_content(&$a) {
+
+$baseurl = z_root();
+$name = sprintf( t('Social Provider on %1$s'), get_config('system','sitename'));
+$description = t('Share content from Firefox to $Projectname');
+$author = 'Mike Macgirvin';
+$homepage = 'http://hubzilla.org';
+$activate = t('Activate the Firefox $Projectname provider');
+
+$s = <<< EOT
+
+<script>
+
+var baseurl = '$baseurl';
+
+var data = {
+ "origin": baseurl,
+ // currently required
+ "name": '$name',
+ "iconURL": baseurl+"/images/hz-16.png",
+ "icon32URL": baseurl+"/images/hz-32.png",
+ "icon64URL": baseurl+"/images/hz-64.png",
+
+ // at least one of these must be defined
+ // "workerURL": baseurl+"/worker.js",
+ // "sidebarURL": baseurl+"/sidebar.htm",
+ "shareURL": baseurl+"/rpost?f=&url=%{url}",
+
+ // status buttons are scheduled for Firefox 26 or 27
+ //"statusURL": baseurl+"/statusPanel.html",
+
+ // social bookmarks are available in Firefox 26
+ //"markURL": baseurl+"/mark.html?url=%{url}",
+ // icons should be 32x32 pixels
+ //"markedIcon": baseurl+"/unchecked.jpg",
+ //"unmarkedIcon": baseurl+"/checked.jpg",
+
+ // should be available for display purposes
+ "description": '$description',
+ "author": '$author',
+ "homepageURL": '$homepage',
+
+ // optional
+ "version": "1.0"
+}
+
+function activate(node) {
+ var event = new CustomEvent("ActivateSocialFeature");
+ var jdata = JSON.stringify(data);
+ node.setAttribute("data-service", JSON.stringify(data));
+ node.dispatchEvent(event);
+}
+</script>
+
+<button onclick="activate(this)" title="activate the demo provider">$activate</button>
+
+EOT;
+
+return $s;
+
+} \ No newline at end of file