aboutsummaryrefslogtreecommitdiff
path: root/actions/new.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:56:18 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:56:18 -0300
commit059badecbc0be895c6165430e5096a9ab653027e (patch)
tree6fd90dce93b43371366c4792622af5f73cb55075 /actions/new.php
downloadelgg-059badecbc0be895c6165430e5096a9ab653027e.tar.gz
elgg-059badecbc0be895c6165430e5096a9ab653027e.tar.bz2
Squashed 'mod/livestream/' content from commit 89d1f38
git-subtree-dir: mod/livestream git-subtree-split: 89d1f3877f241f34e3ed3baad3c9ee9a4fee79e7
Diffstat (limited to 'actions/new.php')
-rwxr-xr-xactions/new.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/actions/new.php b/actions/new.php
new file mode 100755
index 000000000..0deb95275
--- /dev/null
+++ b/actions/new.php
@@ -0,0 +1,23 @@
+<?php
+ require_once "{$CONFIG->pluginspath}livestream/libraries.php";
+
+ $params = Array();
+ $params['title'] = get_input('title', '');
+ $params['mediatype'] = get_input('mediatype', '');
+ $params['src'] = get_input('src', '');
+ $params['width'] = get_input('width', '');
+ $params['height'] = get_input('height', '');
+
+ $params['owner_guid'] = page_owner();
+ $params['container_guid'] = get_input('container_guid', '');
+
+ $myObject = livestream_addnew($params);
+
+ if($myObject){
+ $container = livestream_get_container($myObject);
+ forward('livestream/'.$container->username);
+ }else{
+ elgg_echo ("livestream:internal_error");
+ }
+
+?>