mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
Removed notices by introducing new function print_header_simple() which works on site as well as in courses without extra logic.
This commit is contained in:
parent
64c3e85374
commit
90fcc576ea
49 changed files with 1530 additions and 1709 deletions
|
@ -27,17 +27,13 @@
|
|||
error("Only teachers can look at this page");
|
||||
}
|
||||
|
||||
if ($course->category) {
|
||||
$navigation = "<a href=\"../../course/view.php?id=$course->id\">$course->shortname</a> ->";
|
||||
}
|
||||
|
||||
$strassignments = get_string("modulenameplural", "assignment");
|
||||
$strassignment = get_string("modulename", "assignment");
|
||||
$strsubmissions = get_string("submissions", "assignment");
|
||||
$strsaveallfeedback = get_string("saveallfeedback", "assignment");
|
||||
|
||||
print_header("$course->shortname: $assignment->name", "$course->fullname",
|
||||
"$navigation <a href=\"index.php?id=$course->id\">$strassignments</a> ->
|
||||
print_header_simple($assignment->name, "",
|
||||
"<a href=\"index.php?id=$course->id\">$strassignments</a> ->
|
||||
<a href=\"view.php?a=$assignment->id\">$assignment->name</a> -> $strsubmissions",
|
||||
"", "", true, update_module_button($cm->id, $course->id, $strassignment), navmenu($course, $cm));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue