diff options
author | Dirk Riestere | 2017-02-22 14:51:30 +0100 |
---|---|---|
committer | Dirk Riestere | 2017-02-22 14:51:30 +0100 |
commit | 7e47f9f5c5206312048df0a20c1082352a4fcb5d (patch) | |
tree | d995ff2380b37dc61a283b1eca82cdb04db583f8 /modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php | |
parent | Merge branch 'location-info-panel' of git.openslx.org:openslx-ng/slx-admin in... (diff) | |
download | slx-admin-7e47f9f5c5206312048df0a20c1082352a4fcb5d.tar.gz slx-admin-7e47f9f5c5206312048df0a20c1082352a4fcb5d.tar.xz slx-admin-7e47f9f5c5206312048df0a20c1082352a4fcb5d.zip |
die klassen können jetzt ohne parameter erstellt werden, die url und die serverID wird jetzt in setCredentials gesetzt
Diffstat (limited to 'modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php')
-rw-r--r-- | modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php b/modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php index 1922f9e5..01b476fb 100644 --- a/modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php +++ b/modules-available/locationinfo/inc/coursebackend/coursebackend_hisinone.inc.php @@ -8,16 +8,14 @@ class CourseBackend_HisInOne extends CourseBackend public $serverID; - //Constructs the HisInOneClient - function __construct($location, $serverID) { - $this->location = $location."/qisserver/services2/CourseService"; - $this->serverID = $serverID; - } + // - public function setCredentials($json) { + public function setCredentials($json,$location,$serverID) { $data = json_decode($json, TRUE); $this->password = $data['password']; $this->username = $data['username']."/t".$data['role']; + $this->location = $location."/qisserver/services2/CourseService"; + $this->serverID = $serverID; } //Cache the timetables for 30 minutes ttables older than 60 are not refreshed |