Merge pull request #12628 from nupplaphil/bug/typeerror

Don't ksort() or loop without an addon array
This commit is contained in:
Hypolite Petovan 2023-01-07 15:06:28 -05:00 committed by GitHub
commit 5fd3d4bda3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 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,10 +81,11 @@ class Addon
* @return array
* @throws \Exception
*/
public static function getAdminList()
public static function getAdminList(): array
{
$addons_admin = [];
$addons = DI::config()->get('addons');
$addons = DI::config()->get('addons') ?? [];
ksort($addons);
foreach ($addons as $name => $data) {
if (empty($data['admin'])) {
@ -186,10 +187,12 @@ class Addon
* reload all updated addons
*
* @return void
* @throws \Exception
*
*/
public static function reload()
{
$addons = DI::config()->get('addons');
$addons = DI::config()->get('addons') ?? [];
foreach ($addons as $name => $data) {
$addonname = Strings::sanitizeFilePathItem(trim($name));
@ -312,7 +315,8 @@ class Addon
public static function getVisibleList(): array
{
$visible_addons = [];
$addons = DI::config()->get('addons');
$addons = DI::config()->get('addons') ?? [];
foreach ($addons as $name => $data) {
$visible_addons[] = $name;
}