diff --git a/mod/workshop/lang/en/workshop.php b/mod/workshop/lang/en/workshop.php index baac8d84182..95b52a73b8e 100644 --- a/mod/workshop/lang/en/workshop.php +++ b/mod/workshop/lang/en/workshop.php @@ -192,6 +192,8 @@ $string['usepeerassessment_desc'] = 'Users perform peer assessment of others\' w $string['usepeerassessment_help'] = 'If the peer assessment support is off, workshop participants are not expected to assess their peers\' work. They do not receive any grade for assessment (grading grade) and their grade for submission is based on teacher\'s assessment only.'; $string['userdatecreated'] = 'submitted on {$a}'; $string['userdatemodified'] = 'modified on {$a}'; +$string['userplan'] = 'Workshop main page'; +$string['userplan_help'] = 'At the main page, you can see so called *Workshop user planner*. That displays the current workshop phase and all the tasks you are supposed to the given phase.'; $string['useselfassessment'] = 'Use self assessment'; $string['useselfassessment_desc'] = 'Users perform self assessment of their own work'; $string['useselfassessment_help'] = 'Whether users are allowed to assess their own work. Note that you must still allocate the submissions to their authors explicitely, using some allocation plugin.'; diff --git a/mod/workshop/view.php b/mod/workshop/view.php index 1ce9ac5cfef..9042fdf04f5 100644 --- a/mod/workshop/view.php +++ b/mod/workshop/view.php @@ -62,7 +62,7 @@ $wsoutput = $PAGE->get_renderer('mod_workshop'); /// Output starts here echo $OUTPUT->header(); -echo $OUTPUT->heading(format_string($workshop->name), 2); +echo $OUTPUT->heading_with_help(format_string($workshop->name), 'userplan', 'workshop'); echo $wsoutput->user_plan($workshop->prepare_user_plan($USER->id, $PAGE->context)); switch ($workshop->phase) {