Course fullname instead of "Topic outline"

Course fullname instead of "Topic outline"

Peter Diedrichs - මගින්
Number of replies: 8
Particularly helpful Moodlers ගේ පින්තුරය

I'd like to have the full name of the course printed where it now says "Topic outline" or "Weekly outline", in the Formal White theme. It's quite hard to find where to change this, though! Anyone who can tell me?

ශ්‍රේණිගත කිරීම්වල සාමාන්යය: -
In reply to Peter Diedrichs

Re: Course fullname instead of "Topic outline"

Joseph Rézeau - මගින්
Core developers ගේ පින්තුරය Particularly helpful Moodlers ගේ පින්තුරය Plugin developers ගේ පින්තුරය Testers ගේ පින්තුරය Translators ගේ පින්තුරය
Which Moodle version are you using, please? 1.5, 1.6 or 1.7 ?
Joseph
ශ්‍රේණිගත කිරීම්වල සාමාන්යය: -
In reply to Peter Diedrichs

Re: Course fullname instead of "Topic outline"

Joseph Rézeau - මගින්
Core developers ගේ පින්තුරය Particularly helpful Moodlers ගේ පින්තුරය Plugin developers ගේ පින්තුරය Testers ගේ පින්තුරය Translators ගේ පින්තුරය

You cannot achieve this through CSS styling. I am suggesting a hack for Moodle 1.6.

For replacing the "Topic outline" string with the actual course's full name:

in file /moodle/course/format/topics/format.php towards line 75 replace

print_heading_block(get_string('topicoutline'), 'outline');

with

print_heading_block($course->fullname);

For replacing the "Weekly outline" string with the actual course's full name:

in file /moodle/course/format/weeks/format.php towards line 65 replace:

print_heading_block(get_string('weeklyoutline'), 'outline');

with

print_heading_block($course->fullname);

Joseph

Attachment image000.jpg
ශ්‍රේණිගත කිරීම්වල සාමාන්යය: Useful (2)
In reply to Joseph Rézeau

Re: Course fullname instead of "Topic outline"

Peter Diedrichs - මගින්
Particularly helpful Moodlers ගේ පින්තුරය

Thanks!

I'd really like not to hack the core files, though... that's so inconvenient when upgrading.

ශ්‍රේණිගත කිරීම්වල සාමාන්යය: -
In reply to Joseph Rézeau

Re: Course fullname instead of "Topic outline"

yanzhen liu - මගින්
Thank you , Joseph. It works perfectly in Moodle 1.9 +
ශ්‍රේණිගත කිරීම්වල සාමාන්යය: -