mirror of
https://github.com/tips-of-mine/GLPI-Plugin-SOC-Case-Management.git
synced 2025-06-28 05:38:42 +02:00
15 lines
352 B
PHP
15 lines
352 B
PHP
<?php
|
|
include ("../../../inc/includes.php");
|
|
|
|
Session::checkRight("plugin_soc_case", READ);
|
|
|
|
// Check if plugin is activated
|
|
if (!Plugin::isPluginActive("soc")) {
|
|
Html::displayNotFoundError();
|
|
}
|
|
|
|
Html::header(PluginSocCase::getTypeName(Session::getPluralNumber()), '', "management", "pluginsoccase");
|
|
|
|
Search::show('PluginSocCase');
|
|
|
|
Html::footer(); |