Files
tomolino-processmaker/front/case.php

20 lines
524 B
PHP
Raw Normal View History

<?php
include_once ("../../../inc/includes.php");
Html::header(__('ProcessMaker', 'processmaker'), $_SERVER['PHP_SELF'], "helpdesk", "PluginProcessmakerCase", "cases");
if (!$PM_SOAP->config->fields['maintenance']) {
if (Session::haveRightsOr("plugin_processmaker_case", [READ, DELETE, CANCEL, ADHOC_REASSIGN])) {
Search::show('PluginProcessmakerCase');
} else {
Html::displayRightError();
}
} else {
PluginProcessmakerProcessmaker::showUnderMaintenance();
}
Html::footer();