This file is part of certificates.

Certificates is free software; you can redistribute it and/or modify
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';
$plugin = new Plugin();
if ($plugin->isActivated("environment")) {
    Html::header(PluginCertificatesCertificate::getTypeName(2), '', "assets", "pluginenvironmentdisplay", "certificates");
} else {
    Html::header(PluginCertificatesCertificate::getTypeName(2), '', "assets", "plugincertificatesmenu");
}
$certif = new PluginCertificatesCertificate();
$certif->checkGlobal(READ);
if ($certif->canView()) {
    Search::show("PluginCertificatesCertificate");
} else {
    Html::displayRightError();
}
Html::footer();
예제 #2
0
                         foreach ($_POST["item"] as $key => $val) {
                             $input = array('id' => $key);
                             if ($val == 1) {
                                 $certif_item->check($key, 'w');
                                 $certif_item->delete($input);
                             }
                         }
                         Html::back();
                     } else {
                         if (isset($_POST["deletecertificates"])) {
                             $input = array('id' => $_POST["id"]);
                             $certif_item->check($_POST["id"], 'w');
                             $certif_item->delete($input);
                             Html::back();
                         } else {
                             $certif->checkGlobal("r");
                             $plugin = new Plugin();
                             if ($plugin->isActivated("environment")) {
                                 Html::header(PluginCertificatesCertificate::getTypeName(2), '', "plugins", "environment", "certificates");
                             } else {
                                 Html::header(PluginCertificatesCertificate::getTypeName(2), '', "plugins", "certificates");
                             }
                             $certif->showForm($_GET["id"]);
                             Html::footer();
                         }
                     }
                 }
             }
         }
     }
 }