You are here

function qformat_default::setRealfilename in Quiz 6.6

Same name and namespace in other branches
  1. 6.5 includes/moodle/question/format.php \qformat_default::setRealfilename()

set the "real" filename (this is what the user typed, regardless of wha happened next)

Parameters

string realfilename name of file as typed by user:

File

includes/moodle/question/format.php, line 97

Class

qformat_default
Base class for question import and export formats.

Code

function setRealfilename($realfilename) {
  $this->realfilename = $realfilename;
}