mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 13:09:58 -06:00
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
Menu="Plugins"
|
|
Title="Plugin File Install Errors"
|
|
Tag="puzzle-piece"
|
|
Cond="glob('/boot/config/plugins-error/*.plg')"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2017, Lime Technology
|
|
* Copyright 2012-2017, 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>";
|
|
?>
|
|
|
|
> These plugins were not installed because of some kind of installation error. You should delete these
|
|
> plugins and then **reboot** your server.* |