blob: 7cabfa0a3f3aa4cc80a98f1d624278d46382d7a3 (
plain) (
tree)
|
|
<?php
class Coursebackend_Dummy extends CourseBackend {
private $location;
public $serverID;
function __construct($location, $serverID) {
}
public function setCredentials($json,$location,$serverID) {
}
public function checkConection(){
return $true;
}
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){
$a = array();
foreach ($roomId as $id) {
$x['id'] = $id;
$calendar['title'] = "test exam";
$calendar['start'] = "2017-February-20 10:00:00";
$calendar['end'] = "2017-February-20 12:00:00";
$calarray = array();
$calarray[] = $calendar;
$x['calendar'] = $calarray;
$a[$id] = $calarray;
}
return $a;
}
}
?>
|