Merge pull request #9576 from MrPetovan/bug/9573-addon-install

Don't assume addons must have an *_install function
This commit is contained in:
Michael Vogel 2020-11-22 07:56:16 +01:00 committed by GitHub
當前提交 c5c514fb9a
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 14 次插入22 次删除

查看文件

@ -163,29 +163,21 @@ class Addon
if (function_exists($addon . '_install')) {
$func = $addon . '_install';
$func(DI::app());
$addon_admin = (function_exists($addon . "_addon_admin") ? 1 : 0);
DBA::insert('addon', ['name' => $addon, 'installed' => true,
'timestamp' => $t, 'plugin_admin' => $addon_admin]);
// we can add the following with the previous SQL
// once most site tables have been updated.
// This way the system won't fall over dead during the update.
if (file_exists('addon/' . $addon . '/.hidden')) {
DBA::update('addon', ['hidden' => true], ['name' => $addon]);
}
if (!self::isEnabled($addon)) {
self::$addons[] = $addon;
}
return true;
} else {
Logger::error("Addon {addon}: {action} failed", ['action' => 'install', 'addon' => $addon]);
return false;
}
DBA::insert('addon', [
'name' => $addon,
'installed' => true,
'timestamp' => $t,
'plugin_admin' => function_exists($addon . '_addon_admin'),
'hidden' => file_exists('addon/' . $addon . '/.hidden')
]);
if (!self::isEnabled($addon)) {
self::$addons[] = $addon;
}
return true;
}
/**