forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24a25e7
commit ccb2415
Showing
39 changed files
with
175 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
* @author Alex Killing <[email protected]> | ||
*/ | ||
|
||
include_once './webservice/soap/lib/nusoap.php'; | ||
include_once './components/ILIAS/soap/lib/nusoap.php'; | ||
|
||
function isValidSession(string $ext_uid, string $soap_pw, bool $new_user): array | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @author Stefan Meyer <[email protected]> | ||
*/ | ||
|
||
include_once './webservice/soap/lib/nusoap.php'; | ||
include_once './components/ILIAS/soap/lib/nusoap.php'; | ||
include_once("./components/ILIAS/Authentication/classes/class.ilAuthUtils.php"); // to get auth mode constants | ||
|
||
class ilSoapAdministration | ||
|
@@ -252,7 +252,7 @@ public function getInstallationInfoXML(): string | |
ilInitialisation::initILIAS(); | ||
|
||
$clientdirs = glob(ILIAS_WEB_DIR . "/*", GLOB_ONLYDIR); | ||
require_once("webservice/soap/classes/class.ilSoapInstallationInfoXMLWriter.php"); | ||
require_once("components/ILIAS/soap/classes/class.ilSoapInstallationInfoXMLWriter.php"); | ||
$writer = new ilSoapInstallationInfoXMLWriter(); | ||
$writer->start(); | ||
if (is_array($clientdirs)) { | ||
|
@@ -276,7 +276,7 @@ public function getClientInfoXML(string $clientid) | |
ilInitialisation::initILIAS(); | ||
|
||
$clientdir = ILIAS_WEB_DIR . "/" . $clientid; | ||
require_once("webservice/soap/classes/class.ilSoapInstallationInfoXMLWriter.php"); | ||
require_once("components/ILIAS/soap/classes/class.ilSoapInstallationInfoXMLWriter.php"); | ||
$writer = new ilSoapInstallationInfoXMLWriter(); | ||
$writer->start(); | ||
if (!$writer->addClient($clientdir)) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
* Soap exercise administration methods | ||
* @author Roland Küstermann <[email protected]> | ||
*/ | ||
include_once './webservice/soap/classes/class.ilSoapAdministration.php'; | ||
include_once './components/ILIAS/soap/classes/class.ilSoapAdministration.php'; | ||
|
||
class ilSoapExerciseAdministration extends ilSoapAdministration | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* Soap file administration methods | ||
* @author Roland Küstermann <[email protected]> | ||
*/ | ||
include_once './webservice/soap/classes/class.ilSoapAdministration.php'; | ||
include_once './components/ILIAS/soap/classes/class.ilSoapAdministration.php'; | ||
|
||
class ilSoapFileAdministration extends ilSoapAdministration | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.