blob: 6fa4f32f0bfe8eaa559d72f4fdfdea2ed55dfbaa (
plain) (
blame)
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
37
|
<?php
class Coursebackend_Dummy extends CourseBackend {
private $location;
public $serverID;
function __construct($location, $serverID) {
}
public function setCredentials($json,$location,$serverID) {
}
public function getCredentials(){
$options = ["opt1", "opt2", "opt3", "opt4", "opt5", "opt6", "opt7", "opt8"];
$credentials = ["username" => "string","password"=>"string","option"=>$options];
return $credentials;
}
public function getDisplayName(){
return'Dummy with array';
}
public function getCacheTime(){
return 0;
}
public function getRefreshTime(){
return 0;
}
public function fetchSchedulesInternal($roomId){
}
}
?>
|