From 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 Apr 2016 20:38:38 -0700 Subject: module updates --- mod/filer.php | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 mod/filer.php (limited to 'mod/filer.php') diff --git a/mod/filer.php b/mod/filer.php deleted file mode 100644 index b09c73f0a..000000000 --- a/mod/filer.php +++ /dev/null @@ -1,55 +0,0 @@ - 1) ? intval(App::$argv[1]) : 0); - - logger('filer: tag ' . $term . ' item ' . $item_id); - - if($item_id && strlen($term)){ - // file item - store_item_tag(local_channel(),$item_id,TERM_OBJ_POST,TERM_FILE,$term,''); - - // protect the entire conversation from periodic expiration - - $r = q("select parent from item where id = %d and uid = %d limit 1", - intval($item_id), - intval(local_channel()) - ); - if($r) { - $x = q("update item set item_retained = 1 where id = %d and uid = %d", - intval($r[0]['parent']), - intval(local_channel()) - ); - } - } - else { - $filetags = array(); - $r = q("select distinct(term) from term where uid = %d and type = %d order by term asc", - intval(local_channel()), - intval(TERM_FILE) - ); - if(count($r)) { - foreach($r as $rr) - $filetags[] = $rr['term']; - } - $tpl = get_markup_template("filer_dialog.tpl"); - $o = replace_macros($tpl, array( - '$field' => array('term', t("Save to Folder:"), '', '', $filetags, t('- select -')), - '$submit' => t('Save'), - )); - - echo $o; - } - killme(); -} -- cgit v1.2.3