www/engine/System/Classes/Modules/Extend/Utils/Loader/Addons.php 2 locations
|
@@ 23-26 (lines=4) @@
|
| 20 |
|
} |
| 21 |
|
} |
| 22 |
|
|
| 23 |
|
foreach ((Schema::get(static::$schema)->load() ?? []) as $item) { |
| 24 |
|
|
| 25 |
|
if (isset($items[$item['name']])) $items[$item['name']]['installed'] = true; |
| 26 |
|
} |
| 27 |
|
|
| 28 |
|
# ------------------------ |
| 29 |
|
|
|
@@ 39-42 (lines=4) @@
|
| 36 |
|
|
| 37 |
|
$items = []; |
| 38 |
|
|
| 39 |
|
foreach ((Schema::get(static::$schema)->load() ?? []) as $item) { |
| 40 |
|
|
| 41 |
|
if (static::$extension_class::valid($item['name'])) $items[$item['name']] = $item; |
| 42 |
|
} |
| 43 |
|
|
| 44 |
|
# ------------------------ |
| 45 |
|
|