mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 13:09:58 -06:00
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
Menu="Plugins"
|
|
Title="Plugin File Install Errors"
|
|
Tag="puzzle-piece"
|
|
Cond="glob('/boot/config/plugins-error/*.plg')"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2020, Lime Technology
|
|
* Copyright 2012-2020, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
|
|
<?
|
|
require_once "$docroot/plugins/dynamix.plugin.manager/include/PluginHelpers.php";
|
|
|
|
echo "<table class='tablesorter' id='plugin_table'><thead>";
|
|
echo "<tr><th>"._('Plugin File')."</th><th>"._('Status')."</th></tr>";
|
|
echo "</thead><tbody>";
|
|
|
|
foreach (glob("/boot/config/plugins-error/*.plg", GLOB_NOSORT) as $plugin_file) {
|
|
// status info
|
|
$status_info = _('ERROR')."<br>".make_link("delete", $plugin_file);
|
|
|
|
echo "<tr>";
|
|
echo "<td>{$plugin_file}</td>";
|
|
echo "<td><span style=\"white-space:nowrap\">{$status_info}</span></td>";
|
|
echo "</tr>";
|
|
}
|
|
|
|
echo "</tbody></table>";
|
|
?>
|
|
|
|
:help2
|
|
> These plugins were not installed because of some kind of installation error. You should delete these
|
|
> plugins and then **reboot** your server.*
|
|
:end
|