Moodle Course format

June 25, 2008 – 16:42

while creating custom style for client, he requested Course title to be displayed: replaced the following in course/format/format.php:

  • print_heading_block(get_string(‘topicoutline’), ‘outline’);

to:

  • print_heading_block($course->fullname, ‘outline’);

pretty cool. point is to make a new course format so original code does not get messed up.

Sorry, comments for this entry are closed at this time.