$section_info) { $tab = array( 'title' => $section_info['name'], 'url' => '#', 'url_class' => 'embed_section', 'url_id' => $section_id, ); if ($section_id == $active_section) { $tab['selected'] = TRUE; } $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_id' => 'upload', 'selected' => ($active_section == 'upload') ); } echo elgg_view('navigation/tabs', array('tabs' => $tabs));