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.
Adjust setup.php and callback handler and also fix require_once and
include_once issues.
- Loading branch information
1 parent
4b3db02
commit f67f2d2
Showing
580 changed files
with
1,220 additions
and
1,220 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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite() | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Accessibility_/test/AccessibilityCriterionConfigTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Accessibility_/test/AccessibilityCriterionConfigTest.php"); | ||
$suite->addTestSuite("AccessibilityCriterionConfigTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Accordion_/test/AccordionStandardGUIRequestTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Accordion_/test/AccordionStandardGUIRequestTest.php"); | ||
$suite->addTestSuite("AccordionStandardGUIRequestTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Administration_/test/AdminGUIRequestTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Administration_/test/AdminGUIRequestTest.php"); | ||
$suite->addTestSuite("AdminGUIRequestTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -28,7 +28,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/AdvancedEditing_/test/AdveStandardGUIRequestTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/AdvancedEditing_/test/AdveStandardGUIRequestTest.php"); | ||
$suite->addTestSuite("AdveStandardGUIRequestTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Awareness_/test/AwarenessSessionRepositoryTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Awareness_/test/AwarenessSessionRepositoryTest.php"); | ||
$suite->addTestSuite("AwarenessSessionRepositoryTest"); | ||
|
||
return $suite; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Badge_/test/BadgeManagementSessionRepositoryTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Badge_/test/BadgeManagementSessionRepositoryTest.php"); | ||
$suite->addTestSuite("BadgeManagementSessionRepositoryTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): ilComponentsBlockSuite | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Block_/test/BlockSessionRepositoryTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Block_/test/BlockSessionRepositoryTest.php"); | ||
$suite->addTestSuite("BlockSessionRepositoryTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): ilComponentsBlogSuite | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/Blog_/test/BlogStandardGUIRequestTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/Blog_/test/BlogStandardGUIRequestTest.php"); | ||
$suite->addTestSuite("BlogStandardGUIRequestTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
|
||
use PHPUnit\Framework\TestSuite; | ||
|
||
require_once 'vendor/composer/vendor/autoload.php'; | ||
require_once substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . '/vendor/composer/vendor/autoload.php'; | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
@@ -31,7 +31,7 @@ public static function suite(): self | |
{ | ||
$suite = new self(); | ||
|
||
require_once("./components/ILIAS/BookingManager_/test/BookManStandardGUIRequestTest.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/BookingManager_/test/BookManStandardGUIRequestTest.php"); | ||
$suite->addTestSuite("BookManStandardGUIRequestTest"); | ||
|
||
return $suite; | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
require_once("./components/ILIAS/MediaObjects_/ImageMap/class.ilMapArea.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/MediaObjects_/ImageMap/class.ilMapArea.php"); | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
require_once("./components/ILIAS/MediaObjects_/ImageMap/class.ilMapArea.php"); | ||
require_once(substr(__FILE__, 0, strpos(__FILE__, "components/ILIAS")) . "/components/ILIAS/MediaObjects_/ImageMap/class.ilMapArea.php"); | ||
|
||
/** | ||
* @author Alexander Killing <[email protected]> | ||
|
Oops, something went wrong.