2018-07-04 11:24:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
include_once ("../../../inc/includes.php");
|
|
|
|
|
|
2018-08-02 16:57:00 +02:00
|
|
|
Html::header(__('ProcessMaker', 'processmaker'), $_SERVER['PHP_SELF'], "helpdesk", "PluginProcessmakerCase", "cases");
|
|
|
|
|
|
|
|
|
|
if (!$PM_SOAP->config->fields['maintenance']) {
|
2019-05-21 10:47:15 +02:00
|
|
|
if (Session::haveRightsOr("plugin_processmaker_case", [READ, UPDATE])) {
|
2019-01-14 16:19:24 +01:00
|
|
|
|
2018-08-02 16:57:00 +02:00
|
|
|
Search::show('PluginProcessmakerCase');
|
|
|
|
|
} else {
|
|
|
|
|
Html::displayRightError();
|
|
|
|
|
}
|
2018-07-04 11:24:29 +02:00
|
|
|
} else {
|
2018-08-02 16:57:00 +02:00
|
|
|
PluginProcessmakerProcessmaker::showUnderMaintenance();
|
2018-07-04 11:24:29 +02:00
|
|
|
}
|
2018-08-02 16:57:00 +02:00
|
|
|
|
2018-07-04 11:24:29 +02:00
|
|
|
Html::footer();
|
|
|
|
|
|