static function configCron($target) { $notif = new PluginCertificatesNotificationState(); $config = new PluginCertificatesConfig(); $config->showForm($target, 1); $notif->showForm($target); $notif->showAddForm($target); }
it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Certificates 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 Certificates. If not, see <http://www.gnu.org/licenses/>. -------------------------------------------------------------------------- */ include '../../../inc/includes.php'; Session::checkRight("config", UPDATE); $config = new PluginCertificatesConfig(); $notif = new PluginCertificatesNotificationState(); if (isset($_POST["add"])) { $notif->addNotificationState($_POST['plugin_certificates_certificatestates_id']); Html::back(); } else { if (isset($_POST["delete"])) { foreach ($_POST["item"] as $key => $val) { if ($val == 1) { $notif->delete(array('id' => $key)); } } Html::back(); } else { if (isset($_POST["update"])) { $config->update($_POST);