From fe623545184ae1abde4c8a8f2ca5facdb6030e6b Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 4 Jun 2010 22:18:31 +0000 Subject: Added first loosely coupled upload support to embed. git-svn-id: http://code.elgg.org/elgg/trunk@6360 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/embed/views/default/embed/embed.php | 21 ++++++++--- mod/embed/views/default/embed/upload/content.php | 47 ++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 mod/embed/views/default/embed/upload/content.php (limited to 'mod/embed/views/default') diff --git a/mod/embed/views/default/embed/embed.php b/mod/embed/views/default/embed/embed.php index 4a14543d3..70241609b 100644 --- a/mod/embed/views/default/embed/embed.php +++ b/mod/embed/views/default/embed/embed.php @@ -9,8 +9,9 @@ * @uses string $vars['active_section'] Currently selected section_id */ -$sections = (isset($vars['sections'])) ? $vars['sections'] : array(); -$active_section = (isset($vars['active_section'])) ? $vars['active_section'] : array_shift(array_keys($sections)); +$sections = elgg_get_array_value('sections', $vars, array()); +$active_section = elgg_get_array_value('active_section', $vars, array_shift(array_keys($sections))); +$upload_sections = elgg_get_array_value('upload_sections', $vars, array()); if (!$sections) { $content = elgg_echo('embed:no_sections'); @@ -38,11 +39,21 @@ if (!$sections) { $tabs[] = $tab; } + // make sure upload is always the last tab + if ($upload_sections) { + $tabs[] = array( + 'title' => elgg_echo('embed:upload'), + 'url' => '#', + 'url_class' => 'embed_section', + 'url_js' => 'id="upload"', + ); + } + $tabs_html = elgg_view('navigation/tabs', array('tabs' => $tabs)); $content .= $tabs_html; // build the items and layout. - if (array_key_exists($active_section, $sections)) { + if ($section != 'upload' || array_key_exists($active_section, $sections)) { $section_info = $sections[$active_section]; $layout = isset($section_info['layout']) ? $section_info['layout'] : 'list'; @@ -51,7 +62,8 @@ if (!$sections) { //'subtype' => $subtype, 'offset' => $offset, 'limit' => $limit, - 'section' => $active_section + 'section' => $active_section, + 'upload_sections' => $upload_sections ); // allow full override for this section @@ -99,7 +111,6 @@ if (!$sections) { } else { $content .= elgg_echo('embed:invalid_section'); } - } echo $content; ?> diff --git a/mod/embed/views/default/embed/upload/content.php b/mod/embed/views/default/embed/upload/content.php new file mode 100644 index 000000000..089e417c5 --- /dev/null +++ b/mod/embed/views/default/embed/upload/content.php @@ -0,0 +1,47 @@ + $info) { + $options[$id] = $info['name']; + } + + $input = elgg_view('input/pulldown', array( + 'name' => 'download_section', + 'options_values' => $options, + 'internalid' => 'embed_upload', + 'value' => $active_section + )); + + echo "

$input

"; + + if (!$upload_content = elgg_view($upload_sections[$active_section]['view'])) { + $upload_content = elgg_echo('embed:no_upload_content'); + } + + echo $upload_content; + +?> + +