aboutsummaryrefslogtreecommitdiff
path: root/mod/file/actions
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-30 12:14:22 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-30 12:14:22 +0000
commitc1f8c6378f37e2cac408731b07008a345c3ced8f (patch)
tree9073a80688d489f56fa2240f9274598d1ab58d32 /mod/file/actions
parentc0412aa41a1efe0be21bdd6807280b6a55005053 (diff)
downloadelgg-c1f8c6378f37e2cac408731b07008a345c3ced8f.tar.gz
elgg-c1f8c6378f37e2cac408731b07008a345c3ced8f.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* First draft file upload git-svn-id: https://code.elgg.org/elgg/trunk@578 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/actions')
-rw-r--r--mod/file/actions/upload.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/mod/file/actions/upload.php b/mod/file/actions/upload.php
new file mode 100644
index 000000000..881470bc7
--- /dev/null
+++ b/mod/file/actions/upload.php
@@ -0,0 +1,40 @@
+<?php
+ /**
+ * Elgg file browser uploader action
+ *
+ * @package ElggFile
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ global $CONFIG;
+
+ // Get variables
+ $title = get_input("title");
+ $desc = get_input("description");
+ $tags = get_input("tags");
+
+ // Extract file from, save to default filestore (for now)
+ $prefix = "/file/";
+ $file = new ElggFile();
+ $file->setFilename($_FILES['upload']['name']);
+
+ $file->open("write");
+ $file->write(get_uploaded_file('upload'));
+ $file->close();
+
+ $file->title = $title;
+ $file->description = $desc;
+
+ $result = $file->save();
+
+ // Save tags
+ $tags = explode(",", $tags);
+ $file->tag = $tags;
+
+ if ($result)
+ system_message(elgg_echo("file:saved"));
+ else
+ system_message(elgg_echo("file:uploadfailed"));
+?> \ No newline at end of file