Improve plugin update check messaging

Updated the success message when checking for plugin updates to clarify the source. Added an informational message when outdated plugins are found to improve user feedback.
This commit is contained in:
slawkens 2025-06-19 16:18:55 +02:00
parent e91b44f036
commit 1c6bb2eb8d

View File

@ -53,7 +53,7 @@ else {
}
}
else if (isset($_GET['check-updates'])) {
success('Checking versions');
success('Fetching latest info from plugins.my-aac.org..');
$adminPlugins = new \MyAAC\Admin\Plugins();
@ -96,6 +96,7 @@ else {
}
if (count($outdated) > 0) {
info('Following updates have been found for your plugins:');
$twig->display('admin.plugins.outdated.html.twig', ['plugins' => $outdated]);
}
else {