* @see export_database).
*/
public function __construct(moodle_database $mdb_source, moodle_database $mdb_target,
- $check_schema = true, moodle_progress_trace $feeback = null) {
+ $check_schema = true, progress_trace $feeback = null) {
if (empty($feeback)) {
$this->feeback = new null_progress_trace();
} else {
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package moodlecore
*/
-abstract class moodle_progress_trace {
+abstract class progress_trace {
/**
* Ouput an progress message in whatever format.
* @param string $message the message to output.
}
/**
- * This subclass of moodle_progress_trace does not ouput anything.
+ * This subclass of progress_trace does not ouput anything.
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package moodlecore
*/
-class null_progress_trace extends moodle_progress_trace {
+class null_progress_trace extends progress_trace {
/**
* Does Nothing
*
}
/**
- * This subclass of moodle_progress_trace outputs to plain text.
+ * This subclass of progress_trace outputs to plain text.
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package moodlecore
*/
-class text_progress_trace extends moodle_progress_trace {
+class text_progress_trace extends progress_trace {
/**
* Output the trace message
*
}
/**
- * This subclass of moodle_progress_trace outputs as HTML.
+ * This subclass of progress_trace outputs as HTML.
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package moodlecore
*/
-class html_progress_trace extends moodle_progress_trace {
+class html_progress_trace extends progress_trace {
/**
* Output the trace message
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @package moodlecore
*/
-class html_list_progress_trace extends moodle_progress_trace {
+class html_list_progress_trace extends progress_trace {
/** @var int */
protected $currentdepth = -1;