source: branches/2.2/workflow/inc/class.workflow_process.inc.php @ 3167

Revision 3167, 546 bytes checked in by viani, 14 years ago (diff)

Ticket #1135 - Merged r1990:3166 from /trunk/workflow into /branches/2.2/workflow

  • 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(Factory::getInstance('WorkflowObjects')->getDBGalaxia()->Link_ID);
19                }
20        }
21?>
Note: See TracBrowser for help on using the repository browser.