-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix usage of no longer working API url - Fix composer dependencies for TYPO3 9 LTS
- Loading branch information
1 parent
013a5f0
commit b1f5710
Showing
7 changed files
with
42 additions
and
103 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
namespace JWeiland\Avalex\Utility; | ||
|
||
/* | ||
* This file is part of the avalex project. | ||
* | ||
* It is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License, either version 2 | ||
* of the License, or any later version. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE.txt file that was distributed with this source code. | ||
* | ||
* The TYPO3 project - inspiring people to share! | ||
*/ | ||
|
||
/** | ||
* Class ApiUtility | ||
*/ | ||
class ApiUtility | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
protected static $apiUrl = 'https://avalex.de/'; | ||
|
||
/** | ||
* Returns the API url with trailing slash | ||
* | ||
* @return string | ||
*/ | ||
public static function getApiUrl() | ||
{ | ||
return self::$apiUrl; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
# cat=API/enable/22; type=string; label=API Base Url | ||
apiBaseUrl = https://beta.avalex.de/ | ||
# cat=API/enable/23; type=string; label=API key field (deprecated):Just there for compatibility! Please don´t fill in. | ||
apiKey = |
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