(at your option) any later version. Racks is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Racks. If not, see <http://www.gnu.org/licenses/>. -------------------------------------------------------------------------- */ include '../../../inc/includes.php'; Session::checkRight("config", "w"); $plugin = new Plugin(); if ($plugin->isActivated("racks")) { $PluginRacksConfig = new PluginRacksConfig(); if (isset($_POST["update"])) { Session::checkRight("config", "w"); $PluginRacksConfig->update($_POST); Html::back(); } else { Html::header(PluginRacksRack::getTypeName(2), '', "plugins", "racks"); $PluginRacksConfig->showForm($CFG_GLPI["root_doc"] . "/plugins/racks/front/config.form.php"); Html::footer(); } } else { Html::header(__('Setup'), '', "config", "plugins"); echo "<div align='center'><br><br>"; echo "<img src=\"" . $CFG_GLPI["root_doc"] . "/pics/warning.png\" alt=\"warning\"><br><br>"; echo "<b>" . __('Please activate the plugin', 'racks') . "</b></div>"; }
the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Racks is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Racks. If not, see <http://www.gnu.org/licenses/>. -------------------------------------------------------------------------- */ include '../../../inc/includes.php'; Session::checkRight("config", UPDATE); $plugin = new Plugin(); if ($plugin->isActivated("racks")) { $config = new PluginRacksConfig(); if (isset($_POST["update"])) { $config->update($_POST); Html::back(); } else { Html::header(PluginRacksRack::getTypeName(2), '', "assets", "pluginracksmenu", "config"); $config->showForm(); Html::footer(); } } else { Html::header(__('Setup'), '', "config", "plugins"); echo "<div align='center'><br><br>"; echo "<img src=\"" . $CFG_GLPI["root_doc"] . "/pics/warning.png\" alt=\"warning\"><br><br>"; echo "<b>" . __('Please activate the plugin', 'racks') . "</b></div>"; }