mirror of
https://github.com/moodle/moodle.git
synced 2025-04-16 14:02:32 +02:00
MDL-77014 course: Single activity format course title multilang.
This commit is contained in:
parent
9ee4f8db8b
commit
d70ed83644
@ -76,3 +76,13 @@ Feature: Activity navigation in a single activity course
|
||||
Given I log in as "student2"
|
||||
When I am on "Course 1" course homepage
|
||||
Then I should see "You cannot enrol yourself in this course"
|
||||
|
||||
Scenario: The single activity course format supports multilang course names
|
||||
Given the "multilang" filter is "on"
|
||||
And the "multilang" filter applies to "content and headings"
|
||||
When I am on the "Course 1" "course editing" page logged in as "teacher1"
|
||||
And I expand all fieldsets
|
||||
And I set the field "Course full name" in the "General" "fieldset" to "<span lang=\"de\" class=\"multilang\">Kurs</span><span lang=\"en\" class=\"multilang\">Course</span> 1"
|
||||
And I click on "Save and display" "button"
|
||||
Then I should see "Course 1" in the ".page-header-headings" "css_element"
|
||||
And I should not see "KursCourse 1" in the ".page-header-headings" "css_element"
|
||||
|
@ -157,7 +157,7 @@ class core_renderer extends \core_renderer {
|
||||
$prefix = null;
|
||||
if ($context->contextlevel == CONTEXT_MODULE) {
|
||||
if ($this->page->course->format === 'singleactivity') {
|
||||
$heading = $this->page->course->fullname;
|
||||
$heading = format_string($this->page->course->fullname, true, ['context' => $context]);
|
||||
} else {
|
||||
$heading = $this->page->cm->get_formatted_name();
|
||||
$imagedata = html_writer::img($this->page->cm->get_icon_url()->out(false), '',
|
||||
|
Loading…
x
Reference in New Issue
Block a user