mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 23:48:45 +01:00
a6e5c89237
while remaining secure
26 lines
635 B
PHP
26 lines
635 B
PHP
<?PHP // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
/// CUSTOM FORMAT
|
|
///
|
|
/// This format provides a starting point for creating your own
|
|
/// import format.
|
|
///
|
|
/// See default.php for the functions that you may need to override
|
|
/// if you have different needs.
|
|
///
|
|
/// See missingword.php for an example of how it's done, and see
|
|
/// the top of ../lib.php for some constants you might need.
|
|
///
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Based on default.php, included by ../import.php
|
|
|
|
class quiz_file_format extends quiz_default_format {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|