diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index c8d43fc2b7..3b9837a329 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -2717,10 +2717,10 @@ class learnpath { public function get_html_toc($toc_list = null) { $course_id = api_get_course_int_id(); $course_code = api_get_course_id(); - $is_allowed_to_edit = api_is_allowed_to_edit(null, true); + //$is_allowed_to_edit = api_is_allowed_to_edit(null, true); $charset = api_get_system_encoding(); - $display_action_links_with_icons = false; + //$display_action_links_with_icons = false; if ($this->debug > 0) { error_log('New LP - In learnpath::get_html_toc()', 0); @@ -2732,7 +2732,8 @@ class learnpath { //$parent = $this->items[$this->current]->get_parent(); //if (empty($parent)) { $parent = $this->ordered_items[$this->items[$this->current]->get_previous_index()]; } $html = '
' . Security::remove_XSS($this->get_name()) . '
'; - // Build, display. + + /* if ($is_allowed_to_edit) { $gradebook = Security :: remove_XSS($_GET['gradebook']); if ($this->get_lp_session_id() == api_get_session_id()) { @@ -2754,8 +2755,7 @@ class learnpath { } $html .= ''; } - - } + }*/ $html .= '
'; require_once 'resourcelinker.inc.php'; @@ -5259,10 +5259,10 @@ class learnpath { $gradebook = isset($_GET['gradebook']) ? Security :: remove_XSS($_GET['gradebook']) : null; $return = '
'; - $return .= '' . Display :: return_icon('home.png', get_lang('Build'),'',ICON_SIZE_MEDIUM).''; + //$return .= '' . Display :: return_icon('home.png', get_lang('Build'),'',ICON_SIZE_MEDIUM).''; //$return .= '' . Display :: return_icon('move_learnpath.png', get_lang('BasicOverview'),'',ICON_SIZE_MEDIUM).''; - $return .= '' . Display :: return_icon('view_left_right.png', get_lang('Display'),'',ICON_SIZE_MEDIUM).' '; + //$return .= '' . Display :: return_icon('view_left_right.png', get_lang('Display'),'',ICON_SIZE_MEDIUM).' '; $return .= '' . Display :: return_icon('new_learnigpath_object.png', get_lang('NewStep'),'',ICON_SIZE_MEDIUM).''; // echo '' . Display :: return_icon('add_learnpath_section.png', get_lang('NewChapter'),'',ICON_SIZE_MEDIUM).''; @@ -5732,8 +5732,8 @@ class learnpath { Display::return_icon('forum.png', get_lang('Forums'), array(), 64), Display::return_icon('add_learnpath_section.png', get_lang('NewChapter'), array(), 64) ); - - $chapter = $_SESSION['oLP']->display_item_form('chapter', get_lang('EnterDataNewChapter'), 'add_item'); + echo Display::display_normal_message(get_lang('ClickOnTheLearnerViewToSeeYourLearningPath')); + $chapter = $_SESSION['oLP']->display_item_form('chapter', get_lang('EnterDataNewChapter'), 'add_item'); echo Display::tabs($headers, array($documents, $exercises, $links, $works, $forums, $chapter), 'resource_tab'); return true; } diff --git a/main/newscorm/lp_controller.php b/main/newscorm/lp_controller.php index e6970a5e96..fa42e34c49 100644 --- a/main/newscorm/lp_controller.php +++ b/main/newscorm/lp_controller.php @@ -380,7 +380,9 @@ switch ($action) { if (!$lp_found) { error_log('New LP - No learnpath given for build', 0); require 'lp_list.php'; } else { $_SESSION['refresh'] = 1; - require 'lp_build.php'; + //require 'lp_build.php'; + header('Location: lp_add_item.php?type=step'); + exit; } break; case 'edit_item': diff --git a/main/newscorm/lp_list.php b/main/newscorm/lp_list.php index dd54e152a1..be65365a7a 100644 --- a/main/newscorm/lp_list.php +++ b/main/newscorm/lp_list.php @@ -286,7 +286,6 @@ if (!empty($flat_list)) { //""; }*/ - // EDIT LP if ($current_session == $details['lp_session']) { $dsp_edit_lp = ''.Display::return_icon('settings.png', get_lang('CourseSettings'),'',ICON_SIZE_SMALL).''; @@ -297,7 +296,7 @@ if (!empty($flat_list)) { // BUILD if ($current_session == $details['lp_session']) { if ($details['lp_type'] == 1 || $details['lp_type'] == 2) { - $dsp_build = ''.Display::return_icon('edit.png', get_lang('LearnpathEditLearnpath'),'',ICON_SIZE_SMALL).''; + $dsp_build = ''.Display::return_icon('edit.png', get_lang('LearnpathEditLearnpath'),'',ICON_SIZE_SMALL).''; } else { $dsp_build = Display::return_icon('edit_na.png', get_lang('LearnpathEditLearnpath'),'',ICON_SIZE_SMALL); } diff --git a/main/newscorm/lp_view.php b/main/newscorm/lp_view.php index 6b1670ae28..ba1484ec8b 100644 --- a/main/newscorm/lp_view.php +++ b/main/newscorm/lp_view.php @@ -315,9 +315,20 @@ if (Database::num_rows($res_media) > 0) { if (!empty($row_media['audio'])) {$show_audioplayer = true; break;} } } -?> -
+ +echo '
'; + $is_allowed_to_edit = api_is_allowed_to_edit(null, true, false, false); + if ($is_allowed_to_edit) { + echo '
'; + global $interbreadcrumb; + $interbreadcrumb[] = array('url' => 'lp_controller.php?action=list', 'name' => get_lang('LearningPaths')); + $interbreadcrumb[] = array('url' => api_get_self()."?action=build&lp_id=".$_SESSION['oLP']->id, 'name' => $_SESSION['oLP']->get_name()); + $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('Preview')); + echo return_breadcrumb($interbreadcrumb, null, null); + echo '
'; + } +?>
- - - - + + + + +