2015-10-09 14:13:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
2016-10-25 11:37:01 +02:00
|
|
|
include_once ("../../../inc/includes.php");
|
2015-10-09 14:13:52 +02:00
|
|
|
|
|
|
|
|
Session::checkCentralAccess();
|
|
|
|
|
|
2019-05-21 10:47:15 +02:00
|
|
|
$right = new PluginProcessmakerProcess_Profile();
|
2015-10-09 14:13:52 +02:00
|
|
|
|
|
|
|
|
if (isset($_POST["add"])) {
|
|
|
|
|
|
2017-05-06 18:38:24 +02:00
|
|
|
$right->check(-1, UPDATE, $_POST);
|
2019-05-21 10:47:15 +02:00
|
|
|
$right->add($_POST);
|
2017-05-06 18:38:24 +02:00
|
|
|
Html::back();
|
2019-05-21 10:47:15 +02:00
|
|
|
}
|
2015-10-09 14:13:52 +02:00
|
|
|
|
|
|
|
|
Html::displayErrorAndDie("lost");
|