source: sandbox/workflow/trunk/inc/engine/compiler/activity_pre.php @ 795

Revision 795, 470 bytes checked in by viani, 15 years ago (diff)

Ticket #488 - Inclusão do módulo workflow no ramo trunk do repositório Expresso.

  • Property svn:executable set to *
Line 
1<?php
2//Code to be executed before an 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}
11
12if (!($GLOBALS['workflow']['__leave_activity']))
13{
14  // Set the current user for this activity
15  $this->runtime->setActivityUser();
16}
17$this->runtime->EndStartRun();
18?>
Note: See TracBrowser for help on using the repository browser.