-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathdefault_options.php
More file actions
executable file
·36 lines (27 loc) · 1.09 KB
/
default_options.php
File metadata and controls
executable file
·36 lines (27 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* moosh - Moodle Shell
*
* @copyright 2012 onwards Tomasz Muras
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
//used in the code templates as default author
$defaultOptions['global']['author'] = '<author>';
//path to temporary file
$defaultOptions['global']['tmpfile'] = '/tmp/moosh.tmp';
$defaultOptions['user']['firstname'] = '%s';
$defaultOptions['user']['lastname'] = '%s';
$defaultOptions['user']['password'] = "a";
$defaultOptions['user']['email'] = "%s@moodle.org";
$defaultOptions['user']['country'] = 'PL';
$defaultOptions['user']['city'] = 'Szczecin'; //my home city - why not !? ;)
$defaultOptions['role']['name'] = '%s';
$defaultOptions['role']['description'] = '%s';
$defaultOptions['course']['fullname'] = '%s';
$defaultOptions['course']['description'] = '%s';
$defaultOptions['course']['visible'] = 1;
$defaultOptions['course']['category'] = 1;
$defaultOptions['course']['role'] = 'student';
//use xdotool to automate some of the tasks
$defaultOptions['global']['xdotool'] = false;
$defaultOptions['global']['browser_string'] = 'Mozilla Firefox';