pass accessobj to view

This commit is contained in:
Uwe Steinmann 2016-09-05 10:05:37 +02:00
parent e272d26f30
commit f768ad63f0
3 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,7 @@ if (is_bool($workflowactions)) {
if($view) {
$view->setParam('allworkflowactions', $workflowactions);
$view->setParam('selworkflowaction', $selworkflowaction);
$view->setParam('accessobject', $accessop);
$view($_GET);
exit;
}

View File

@ -54,6 +54,7 @@ if($view) {
$view->setParam('selworkflow', $selworkflow);
$view->setParam('allworkflows', $workflows);
$view->setParam('allworkflowstates', $workflowstates);
$view->setParam('accessobject', $accessop);
$view($_GET);
exit;
}

View File

@ -42,6 +42,7 @@ if(isset($_GET['workflowstateid']) && $_GET['workflowstateid']) {
if($view) {
$view->setParam('selworkflowstate', $selworkflowstate);
$view->setParam('accessobject', $accessop);
$view($_GET);
exit;
}