source: branches/1.2/workflow/inc/class.workflow_process.inc.php @ 1349

Revision 1349, 546 bytes checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1<?php
2        // include galaxia's configuration tailored to egroupware
3        require_once('engine/config.egw.inc.php');
4
5        require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'Process.php');
6        /**
7         * @package Workflow
8         * @license http://www.gnu.org/copyleft/gpl.html GPL
9         */
10        class workflow_process extends Process
11        {   /**
12                 * Construtor da classe workflow_process
13                 * @access public
14                 * @return object
15                 */
16                function workflow_process()
17                {
18                        parent::Process($GLOBALS['workflow']['workflowObjects']->getDBGalaxia()->Link_ID);
19                }
20        }
21?>
Note: See TracBrowser for help on using the repository browser.