Changed all PM table names to uppercase in queries (to be compliant with table names in PM DB) Fixed a lot of CS issues Deleted obsolete comments Deleted config folder Changed version to 3.1.3 Fixes #8 Fixes #13 Fixes #14
24 lines
580 B
PHP
24 lines
580 B
PHP
<?php
|
|
|
|
include_once ("../../../inc/includes.php");
|
|
|
|
Html::header($LANG['processmaker']['title'][1], $_SERVER['PHP_SELF'], "plugins", "processmaker");
|
|
|
|
if (Session::haveRight("plugin_processmaker_config", READ) || Session::haveRight("config", UPDATE)) {
|
|
$process=new PluginProcessmakerProcess();
|
|
|
|
if (isset( $_REQUEST['refresh'] ) && Session::haveRight("plugin_processmaker_config", UPDATE)) {
|
|
$process->refresh();
|
|
Html::back();
|
|
}
|
|
|
|
$process->title();
|
|
|
|
Search::show('PluginProcessmakerProcess');
|
|
|
|
} else {
|
|
Html::displayRightError();
|
|
}
|
|
Html::footer();
|
|
|