load data from usernet table or create a default instance
[brisk.git] / web / Obj / dbase_pgsql.phh
index 77c215f..e3e1551 100644 (file)
@@ -855,6 +855,28 @@ INSERT INTO %smails (code, ucode, type, tstamp, subj, body_txt, body_htm, hash)
         return (TRUE);
     }
 
+    function usernet_bycode($owner, $target)
+    {
+        GLOBAL $G_dbpfx;
+        $ret = FALSE;
+
+        $net_sql = sprintf("SELECT * FROM %susers_net WHERE owner = %d AND target = %d;",
+                            $G_dbpfx, $owner, $target);
+        if (($net_pg  = $this->query($net_sql)) == FALSE) {
+            return FALSE;
+        }
+        if (pg_numrows($net_pg) != 1)
+            return FALSE;
+
+        $net_obj = pg_fetch_object($net_pg, 0);
+
+        return (UserNetItem::UserNetItemFromRecord($net_obj));
+    }
+
+    function usernet_default($owner, $target)
+    {
+        return (UserNetItem::UserNetItemDefaults($owner, $target));
+    }
 
 } // End class BriskDB