aboutsummaryrefslogtreecommitdiffstats
path: root/mod/filer.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-13 18:13:03 -0700
committerfriendica <info@friendica.com>2012-03-13 18:13:03 -0700
commitbe48fff1570aa1d04e049a6fd1665f4fc9634a62 (patch)
tree27b3a9afc78391ece8bfd2ce13ac74b77bc18898 /mod/filer.php
parent8a789a33d1168359ae23300bc3169b37fb02facc (diff)
downloadvolse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.tar.gz
volse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.tar.bz2
volse-hubzilla-be48fff1570aa1d04e049a6fd1665f4fc9634a62.zip
file as widget and basic filing implementation for duepuntozero,slackr
much more work needed - this is just for test/evaluation currently
Diffstat (limited to 'mod/filer.php')
-rwxr-xr-xmod/filer.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/filer.php b/mod/filer.php
new file mode 100755
index 000000000..a9e213536
--- /dev/null
+++ b/mod/filer.php
@@ -0,0 +1,23 @@
+<?php
+
+require_once('include/security.php');
+require_once('include/bbcode.php');
+require_once('include/items.php');
+
+
+function filer_content(&$a) {
+
+ if(! local_user()) {
+ killme();
+ }
+
+ $term = notags(trim($_GET['term']));
+ $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
+
+ logger('filer: tag ' . $term . ' item ' . $item_id);
+
+ if($item_id && strlen($term))
+ file_tag_save_file(local_user(),$item_id,$term);
+
+ killme();
+}