24 lines
582 B
PHP
24 lines
582 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
include_once ("../../../inc/includes.php");
|
||
|
|
|
||
|
|
Html::header($LANG['processmaker']['title'][1], $_SERVER['PHP_SELF'], "helpdesk", "PluginProcessmakerCase", "cases");
|
||
|
|
|
||
|
|
if (Session::haveRightsOr("plugin_processmaker_config", [READ, UPDATE])) {
|
||
|
|
//$process=new PluginProcessmakerProcess();
|
||
|
|
|
||
|
|
//if (isset( $_REQUEST['refresh'] ) && Session::haveRight("plugin_processmaker_config", UPDATE)) {
|
||
|
|
// $process->refresh();
|
||
|
|
// Html::back();
|
||
|
|
//}
|
||
|
|
|
||
|
|
//$process->title();
|
||
|
|
|
||
|
|
Search::show('PluginProcessmakerCase');
|
||
|
|
|
||
|
|
} else {
|
||
|
|
Html::displayRightError();
|
||
|
|
}
|
||
|
|
Html::footer();
|
||
|
|
|