aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2011-11-12 01:38:03 +0100
committerSem <sembrestels@riseup.net>2011-11-12 01:38:03 +0100
commit27cfe71b0bb0e4b18b119a7ba17a449771a065b3 (patch)
treea460cd70409cdb9430c756dac3b74d8f8ba0833c
parent89c298b5359333d048fc96bed8e33040fa243a51 (diff)
parent4585e371857636c1dece9978fba65d978a3afc78 (diff)
downloadelgg-27cfe71b0bb0e4b18b119a7ba17a449771a065b3.tar.gz
elgg-27cfe71b0bb0e4b18b119a7ba17a449771a065b3.tar.bz2
Merge branch 'lorea-1.8' of github.com:lorea/videolist into elgg-videolist
-rw-r--r--actions/videolist/edit.php30
-rw-r--r--pages/videolist/edit.php1
-rw-r--r--views/default/forms/videolist/edit.php2
3 files changed, 22 insertions, 11 deletions
diff --git a/actions/videolist/edit.php b/actions/videolist/edit.php
index f9db7b6a2..6670ceadb 100644
--- a/actions/videolist/edit.php
+++ b/actions/videolist/edit.php
@@ -18,23 +18,33 @@ foreach ($variables as $name => $type) {
}
// Get guids
-$videolist_guid = (int)get_input('videolist_guid');
+$video_guid = (int)get_input('video_guid');
$container_guid = (int)get_input('container_guid');
elgg_make_sticky_form('videolist');
elgg_load_library('elgg:videolist');
-if (!$input['video_url']) {
- register_error(elgg_echo('videolist:error:no_url'));
- forward(REFERER);
-}
+// If new video, get data from video providers
+if(!$video_guid) {
+ if (!$input['video_url']) {
+ register_error(elgg_echo('videolist:error:no_url'));
+ forward(REFERER);
+ }
-$parsed_url = videolist_parseurl($input['video_url']);
+ $parsed_url = videolist_parseurl($input['video_url']);
-if(!$parsed_url) {
- register_error(elgg_echo('videolist:error:invalid_url'));
- forward(REFERER);
+ if(!$parsed_url) {
+ register_error(elgg_echo('videolist:error:invalid_url'));
+ forward(REFERER);
+ }
+
+ unset($input['title']);
+ unset($input['description']);
+ $input = array_merge(videolist_get_data($parsed_url), $input);
+
+} else {
+ unset($input['video_url']);
}
if ($video_guid) {
@@ -50,8 +60,6 @@ if ($video_guid) {
$new_video = true;
}
-$input = array_merge($input, videolist_get_data($parsed_url));
-
if (sizeof($input) > 0) {
foreach ($input as $name => $value) {
$video->$name = $value;
diff --git a/pages/videolist/edit.php b/pages/videolist/edit.php
index 5ca1e4b64..916d9d280 100644
--- a/pages/videolist/edit.php
+++ b/pages/videolist/edit.php
@@ -36,6 +36,7 @@ $body_vars = array('guid' => $guid);
foreach(array_keys(elgg_get_config('videolist')) as $variable) {
$body_vars[$variable] = $videolist_item->$variable;
}
+$body_vars['container_guid'] = $videolist_item->container_guid;
$content = elgg_view_form('videolist/edit', $form_vars, $body_vars);
diff --git a/views/default/forms/videolist/edit.php b/views/default/forms/videolist/edit.php
index 8bbbcffb7..18fb6ded4 100644
--- a/views/default/forms/videolist/edit.php
+++ b/views/default/forms/videolist/edit.php
@@ -10,6 +10,8 @@ $variables = elgg_get_config('videolist');
if(empty($vars['guid'])){
unset($variables['title']);
unset($variables['description']);
+} else {
+ unset($variables['video_url']);
}
foreach ($variables as $name => $type) {