mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-21695 renaming ->help_icon() to old_help_icon() and going to introduce new help_icon() with new parameters and detailed debugging - hopefully this will help during the conversion to new help
This commit is contained in:
parent
9f9193f623
commit
596509e431
55 changed files with 116 additions and 116 deletions
|
@ -16,14 +16,14 @@
|
|||
<td align="right" valign="middle" nowrap="nowrap">
|
||||
<?php
|
||||
//TODO: replace by new editor stuff!
|
||||
echo $OUTPUT->help_icon("reading", get_string("helpreading"), "moodle", true);
|
||||
echo $OUTPUT->old_help_icon("reading", get_string("helpreading"), "moodle", true);
|
||||
echo "<br />";
|
||||
echo $OUTPUT->help_icon("writing", get_string("helpwriting"), "moodle", true);
|
||||
echo $OUTPUT->old_help_icon("writing", get_string("helpwriting"), "moodle", true);
|
||||
echo "<br />";
|
||||
echo $OUTPUT->help_icon("questions", get_string("helpquestions"), "moodle", true);
|
||||
echo $OUTPUT->old_help_icon("questions", get_string("helpquestions"), "moodle", true);
|
||||
echo "<br />";
|
||||
if ($usehtmleditor) {
|
||||
echo $OUTPUT->help_icon("richtext2", get_string("helprichtext"), "moodle", true);
|
||||
echo $OUTPUT->old_help_icon("richtext2", get_string("helprichtext"), "moodle", true);
|
||||
} else {
|
||||
//emoticonhelpbutton("theform", "message"); to be replaced by new editor stuff
|
||||
}
|
||||
|
@ -42,7 +42,7 @@
|
|||
} else {
|
||||
choose_from_menu(format_text_menu(), "format", $format, "");
|
||||
}
|
||||
echo $OUTPUT->help_icon("textformat", get_string("helpformatting"));
|
||||
echo $OUTPUT->old_help_icon("textformat", get_string("helpformatting"));
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue