You are here

function format_text in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle_support.php \format_text()
3 calls to format_text()
qformat_default::format_question_text in includes/moodle/question/format.php
where question specifies a moodle (text) format this performs the conversion.
qformat_gift::repchar in includes/moodle/question/format/gift/format.php
qformat_xhtml::writequestion in includes/moodle/question/format/xhtml/format.php
convert a single question object into text output in the given format. This must be overriden

File

includes/moodle_support.php, line 392

Code

function format_text($text, $format = FORMAT_MOODLE, $options = NULL, $courseid = NULL) {
  return $text;
}