diff options
author | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-07 20:24:20 +0000 |
---|---|---|
committer | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-07 20:24:20 +0000 |
commit | 73cac44d633c45225cd9f1ee102e56044027d04d (patch) | |
tree | dc64cdae2bcf48503a982b3842482e73dd6b9c6f /actions/edit.php | |
parent | b055677aa5563fd703982753d2facaa76536335a (diff) | |
download | elgg-73cac44d633c45225cd9f1ee102e56044027d04d.tar.gz elgg-73cac44d633c45225cd9f1ee102e56044027d04d.tar.bz2 |
edit videos
Diffstat (limited to 'actions/edit.php')
-rw-r--r-- | actions/edit.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/actions/edit.php b/actions/edit.php new file mode 100644 index 000000000..6ccc2a320 --- /dev/null +++ b/actions/edit.php @@ -0,0 +1,42 @@ +<?php
+/**
+ * Elgg video edit
+ */
+
+global $CONFIG;
+
+// Get variables
+$title = strip_tags(get_input("title_videourl"));
+$tags = get_input("tags");
+$access_id = (int) get_input("access_id");
+
+$guid = (int) get_input('video_guid');
+
+if (!$video = get_entity($guid)) {
+ register_error(elgg_echo("videolist:noentity"));
+ forward($CONFIG->wwwroot . "pg/videolist/" . $_SESSION['user']->username);
+ exit;
+}
+
+$result = false;
+
+$container_guid = $video->container_guid;
+$container = get_entity($container_guid);
+
+if ($video->canEdit()) {
+
+ $video->access_id = $access_id;
+ $video->title = $title;
+
+ // Save tags
+ $tags = explode(",", $tags);
+ $video->tags = $tags;
+ $result = $video->save();
+}
+
+if ($result)
+ system_message(elgg_echo("videolist:editsaved"));
+else
+ register_error(elgg_echo("videolist:editfailed"));
+
+forward($CONFIG->wwwroot . "pg/videolist/" . $container->username);
\ No newline at end of file |