diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-29 16:59:19 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-29 16:59:19 +0000 |
commit | e3112dc160a611462cc77b22644f7050480888db (patch) | |
tree | bbc7d4ec4013c7f5c338408d30219adce839ab24 /mod/profile/actions | |
parent | 118051aadcf348d6b225a437a4df3b077f413cbe (diff) | |
download | elgg-e3112dc160a611462cc77b22644f7050480888db.tar.gz elgg-e3112dc160a611462cc77b22644f7050480888db.tar.bz2 |
Introducing profile icons.
git-svn-id: https://code.elgg.org/elgg/trunk@564 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions')
-rw-r--r-- | mod/profile/actions/iconupload.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/mod/profile/actions/iconupload.php b/mod/profile/actions/iconupload.php new file mode 100644 index 000000000..bdb925838 --- /dev/null +++ b/mod/profile/actions/iconupload.php @@ -0,0 +1,45 @@ +<?php
+
+ /**
+ * Elgg profile plugin upload new user icon action
+ *
+ * @package ElggProfile
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Ben Werdmuller <ben@curverider.co.uk>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ // If we were given a correct icon
+ if (
+ isloggedin()
+ && $small = get_resized_image_from_uploaded_file('profileicon',50,50)
+ && $medium = get_resized_image_from_uploaded_file('profileicon',100,100)
+ && $large = get_resized_image_from_uploaded_file('profileicon',200,200)
+ ) {
+
+ $filehandler = new ElggFile();
+ $filehandler->setFilename($_SESSION['user']->username . "large.jpg");
+ $filehandler->open("write");
+ $filehandler->write($large);
+ $filehandler->close();
+ $filehandler->setFilename($_SESSION['user']->username . "medium.jpg");
+ $filehandler->open("write");
+ $filehandler->write($medium);
+ $filehandler->close();
+ $filehandler->setFilename($_SESSION['user']->username . "small.jpg");
+ $filehandler->open("write");
+ $filehandler->write($small);
+ $filehandler->close();
+
+ system_message(elgg_echo("profile:icon:uploaded"));
+
+ } else {
+
+ system_message(elgg_echo("profile:icon:notfound"));
+
+ }
+
+ if (isloggedin()) forward($_SESSION['user']->getURL());
+
+?>
\ No newline at end of file |