mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 16:13:28 +02:00
MDL-38336 SCORM: incorrect TOC bulding when 'Display course structure' is on
This commit is contained in:
parent
373a8e052c
commit
724dc929c7
1 changed files with 12 additions and 4 deletions
|
@ -1625,13 +1625,21 @@ function scorm_format_toc_for_treeview($user, $scorm, $scoes, $usertracks, $cmid
|
|||
}
|
||||
} else if ($toclink == TOCFULLURL) {
|
||||
$url = $CFG->wwwroot.'/mod/scorm/player.php?'.$sco->url;
|
||||
if ($sco->scormtype == 'sco') {
|
||||
$result->toc .= $sco->statusicon.' <a href="'.$url.'">'.format_string($sco->title).'</a>'.$score."\n";
|
||||
if (!empty($sco->launch)) {
|
||||
if ($sco->scormtype == 'sco') {
|
||||
$result->toc .= $sco->statusicon.' <a href="'.$url.'">'.format_string($sco->title).'</a>'.$score."\n";
|
||||
} else {
|
||||
$result->toc .= ' <a href="'.$url.'">'.format_string($sco->title).'</a>'.$score."\n";
|
||||
}
|
||||
} else {
|
||||
$result->toc .= ' <a href="'.$url.'">'.format_string($sco->title).'</a>'.$score."\n";
|
||||
if ($sco->scormtype == 'sco') {
|
||||
$result->toc .= $sco->statusicon.' '.format_string($sco->title).$score."\n";
|
||||
} else {
|
||||
$result->toc .= ' '.format_string($sco->title).$score."\n";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if ($sco->launch) {
|
||||
if (!empty($sco->launch)) {
|
||||
if ($sco->scormtype == 'sco') {
|
||||
$result->toc .= '<a title="'.$sco->url.'">'.$sco->statusicon.' '.format_string($sco->title).' '.$score.'</a>';
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue