mapping id <-> kind of friend
[brisk.git] / web / Obj / user.phh
index 99952e4..fde4a57 100644 (file)
@@ -933,9 +933,23 @@ function usersnet_friend_getlabel($id)
 
     $id_i = intval($id);
 
-    if ($id_i < 0 || $id_i >= count($__usersnet_friend_map)) {
+    if ($id_i < 1 || $id_i > count($__usersnet_friend_map)) {
         return FALSE;
     }
-    return ($__usersnet_friend_map[$id_i]);
+    return ($__usersnet_friend_map[$id_i - 1]);
+}
+
+/* return index + 1 of friend label */
+function usersnet_friend_getid($label_in)
+{
+    GLOBAL $__usersnet_friend_map;
+
+    foreach ($__usersnet_friend_map as $id => $label) {
+        if ($label == $label_in) {
+            return ($id + 1);
+        }
+    }
+
+    return FALSE;
 }
 ?>