aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-06 17:38:34 -0700
committerzotlabs <mike@macgirvin.com>2017-06-06 17:38:34 -0700
commite917b949292fc83edb22d955251f8887544b772a (patch)
treeccd0503788fca5a24958fbfcfd4287a55e52b3e3 /include/taxonomy.php
parent83f8f8ebb8bc7e6cbbc3b71f664706e30dfe6c1c (diff)
downloadvolse-hubzilla-e917b949292fc83edb22d955251f8887544b772a.tar.gz
volse-hubzilla-e917b949292fc83edb22d955251f8887544b772a.tar.bz2
volse-hubzilla-e917b949292fc83edb22d955251f8887544b772a.zip
hubzilla issue #810
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index 0b4b2aa9a..dc0e439e2 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -44,6 +44,36 @@ function term_query($table,$s,$type = TERM_UNKNOWN, $type2 = '') {
}
+function term_item_parent_query($uid,$table,$s,$type = TERM_UNKNOWN, $type2 = '') {
+
+ if($type2) {
+ $r = q("select parent from item left join term on term.oid = item.id where term.ttype in (%d, %d) and term.term = '%s' and term.uid = %d and term.otype = 1",
+ intval($type),
+ intval($type2),
+ dbesc($s),
+ intval($uid)
+ );
+ }
+ else {
+ $r = q("select parent from item left join term on term.oid = item.id where term.ttype = %d and term.term = '%s' and term.uid = %d and term.otype = 1",
+ intval($type),
+ dbesc($s),
+ intval($uid)
+ );
+ }
+ if($r) {
+ $str = '';
+ foreach($r as $rv) {
+ if($str)
+ $str .= ',';
+ $str .= intval($rv['parent']);
+ }
+ return " AND " . (($table) ? dbesc($table) . '.' : '') . "id in ( $str ) ";
+ }
+ return " AND false ";
+}
+
+
function store_item_tag($uid,$iid,$otype,$type,$term,$url = '') {
if(! $term)
return false;