Fix addons problem more elegant

This commit is contained in:
Philipp Holzer 2023-01-07 20:49:29 +01:00
parent 9fb5b95b5e
commit 6aaf1ea5d4
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
1 changed files with 7 additions and 17 deletions

View File

@ -51,7 +51,7 @@ class Addon
* @return array
* @throws \Exception
*/
public static function getAvailableList()
public static function getAvailableList(): array
{
$addons = [];
$files = glob('addon/*/');
@ -81,14 +81,10 @@ class Addon
* @return array
* @throws \Exception
*/
public static function getAdminList()
public static function getAdminList(): array
{
$addons_admin = [];
$addons = DI::config()->get('addons');
if (empty($addons)) {
return $addons_admin;
}
$addons = DI::config()->get('addons') ?? [];
ksort($addons);
foreach ($addons as $name => $data) {
@ -191,14 +187,12 @@ class Addon
* reload all updated addons
*
* @return void
* @throws \Exception
*
*/
public static function reload()
{
$addons = DI::config()->get('addons');
if (empty($addons)) {
return;
}
$addons = DI::config()->get('addons') ?? [];
foreach ($addons as $name => $data) {
$addonname = Strings::sanitizeFilePathItem(trim($name));
@ -321,11 +315,7 @@ class Addon
public static function getVisibleList(): array
{
$visible_addons = [];
$addons = DI::config()->get('addons');
if (empty($addons)) {
return $visible_addons;
}
$addons = DI::config()->get('addons') ?? [];
foreach ($addons as $name => $data) {
$visible_addons[] = $name;