summaryrefslogtreecommitdiffstats
path: root/app/class/user.class.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/class/user.class.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/class/user.class.php b/app/class/user.class.php
index 1130396..1d17dfe 100644
--- a/app/class/user.class.php
+++ b/app/class/user.class.php
@@ -187,6 +187,25 @@ class User extends Object
return "glyphicon glyphicon-user";
}
+
+ /*
+ * Get this user's head image
+ */
+ function getHeadImage()
+ {
+ return $this->ar() . "/file.php?d=img/heads&f=" . $this->guid;
+ }
+
+ /*
+ * Remove this user's head image
+ */
+ function rmHeadImage()
+ {
+ if (!is_file("assets/img/heads/" . $this->guid))
+ return true;
+
+ return unlink("assets/img/heads/" . $this->guid);
+ }
}
?>