diff --git a/admin/tool/usertours/classes/local/forms/editstep.php b/admin/tool/usertours/classes/local/forms/editstep.php index 5610efcb9cb..83d5665a7d8 100644 --- a/admin/tool/usertours/classes/local/forms/editstep.php +++ b/admin/tool/usertours/classes/local/forms/editstep.php @@ -58,11 +58,13 @@ class editstep extends \moodleform { public function definition() { $mform = $this->_form; + $mform->addElement('header', 'heading_target', get_string('target_heading', 'tool_usertours')); $types = []; foreach (\tool_usertours\target::get_target_types() as $value => $type) { $types[$value] = get_string('target_' . $type, 'tool_usertours'); } $mform->addElement('select', 'targettype', get_string('targettype', 'tool_usertours'), $types); + $mform->addHelpButton('targettype', 'targettype', 'tool_usertours'); // The target configuration. foreach (\tool_usertours\target::get_target_types() as $value => $type) { @@ -70,7 +72,8 @@ class editstep extends \moodleform { $targetclass::add_config_to_form($mform); } - // Title of the step. + // Content of the step. + $mform->addElement('header', 'heading_content', get_string('content_heading', 'tool_usertours')); $mform->addElement('textarea', 'title', get_string('title', 'tool_usertours')); $mform->addRule('title', get_string('required'), 'required', null, 'client'); $mform->setType('title', PARAM_TEXT); @@ -82,6 +85,7 @@ class editstep extends \moodleform { $mform->addHelpButton('content', 'content', 'tool_usertours'); // Add the step configuration. + $mform->addElement('header', 'heading_options', get_string('options_heading', 'tool_usertours')); // All step configuration is defined in the step. $this->step->add_config_to_form($mform); diff --git a/admin/tool/usertours/classes/local/forms/edittour.php b/admin/tool/usertours/classes/local/forms/edittour.php index 3bb71aeb013..272267d14cc 100644 --- a/admin/tool/usertours/classes/local/forms/edittour.php +++ b/admin/tool/usertours/classes/local/forms/edittour.php @@ -77,7 +77,7 @@ class edittour extends \moodleform { $mform->setType('pathmatch', PARAM_RAW); $mform->addHelpButton('pathmatch', 'pathmatch', 'tool_usertours'); - $mform->addElement('checkbox', 'enabled', get_string('enabled', 'tool_usertours')); + $mform->addElement('checkbox', 'enabled', get_string('tourisenabled', 'tool_usertours')); // Configuration. $this->tour->add_config_to_form($mform); diff --git a/admin/tool/usertours/lang/en/tool_usertours.php b/admin/tool/usertours/lang/en/tool_usertours.php index 67a395f143d..90e72ee857d 100644 --- a/admin/tool/usertours/lang/en/tool_usertours.php +++ b/admin/tool/usertours/lang/en/tool_usertours.php @@ -22,11 +22,12 @@ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ +$string['above'] = 'Above'; $string['actions'] = 'Actions'; $string['appliesto'] = 'Applies to'; +$string['below'] = 'Below'; $string['block'] = 'Block'; $string['block_named'] = 'Block named \'{$a}\''; -$string['bottom'] = 'Bottom'; $string['cachedef_stepdata'] = 'List of User Tour steps'; $string['cachedef_tourdata'] = 'List of enabled User Tours information which are fetched on every page'; $string['description'] = 'Description'; @@ -35,6 +36,7 @@ $string['confirmstepremovaltitle'] = 'Confirm step removal'; $string['confirmtourremovalquestion'] = 'Are you sure that you wish to remove this tour?'; $string['confirmtourremovaltitle'] = 'Confirm tour removal'; $string['content'] = 'Content'; +$string['content_heading'] = 'Content'; $string['content_help'] = 'This is the content of the step. You can enter a content in the following formats: