Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 50... Línea 50...
50
    $listurlnav = new moodle_url('/admin/tool/profiling/index.php', array('listurl' => $listurl));
50
    $listurlnav = new moodle_url('/admin/tool/profiling/index.php', array('listurl' => $listurl));
51
    $PAGE->navbar->add($listurl, $listurlnav);
51
    $PAGE->navbar->add($listurl, $listurlnav);
52
}
52
}
Línea 53... Línea 53...
53
 
53
 
54
// Add a new nav item to make $listurl clickable for the Boost theme.
54
// Add a new nav item to make $listurl clickable for the Boost theme.
55
if (isset($script)) {
55
if (isset($script) || isset($runid)) {
56
    $lastrunnav = get_string('lastrun', 'tool_profiling');
56
    $detailnav = get_string('detailview', 'tool_profiling');
57
    $PAGE->navbar->add($lastrunnav);
57
    $PAGE->navbar->add($detailnav);
Línea 58... Línea 58...
58
}
58
}
59
 
59