aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2012-03-28 10:49:34 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2012-03-28 10:49:34 +0200
commit0a2675d8b698302e50cb64ce5793ab9d22dee329 (patch)
treeb593a82998112d55bacb726e6f7a468dac4a8a59 /mod
parent7aec2fd68d6cec75d14c02b63a150d904aae817e (diff)
downloadvolse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.tar.gz
volse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.tar.bz2
volse-hubzilla-0a2675d8b698302e50cb64ce5793ab9d22dee329.zip
filer: replace "file as" prompt with combobox opened in fancybox
Diffstat (limited to 'mod')
-rwxr-xr-xmod/filer.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/mod/filer.php b/mod/filer.php
index a9e213536..82537848b 100755
--- a/mod/filer.php
+++ b/mod/filer.php
@@ -16,8 +16,20 @@ function filer_content(&$a) {
logger('filer: tag ' . $term . ' item ' . $item_id);
- if($item_id && strlen($term))
+ if($item_id && strlen($term)){
+ // file item
file_tag_save_file(local_user(),$item_id,$term);
-
+ } else {
+ // return filer dialog
+ $filetags = get_pconfig(local_user(),'system','filetags');
+ $filetags = explode("][", trim($filetags,"[]"));
+ $tpl = get_markup_template("filer_dialog.tpl");
+ $o = replace_macros($tpl, array(
+ '$field' => array('term', t("File as:"), '', '', $filetags, t('- select -')),
+ '$submit' => t('Save'),
+ ));
+
+ echo $o;
+ }
killme();
}