source: companies/serpro/workflow/inc/engine/compiler/end_pre.php @ 903

Revision 903, 478 bytes checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1<?php
2//Code to be executed before the end activity
3
4$this->runtime->StartRun();
5
6//tests for access rights and lock some rows--------------------------
7if (!($this->runtime->checkUserRun($GLOBALS['user'])))
8{
9  return $this->runtime->fail(lang('You have not permission to execute this activity'), true);
10}
11if (!($GLOBALS['workflow']['__leave_activity']))
12{
13  // Set the current user for this activity
14    $this->runtime->setActivityUser();
15}
16
17$this->runtime->EndStartRun();
18
19?>
Note: See TracBrowser for help on using the repository browser.