source: sandbox/workflow/2.0/inc/class.workflow_wfruntime.inc.php @ 1293

Revision 1293, 593 bytes checked in by gbisotto, 15 years ago (diff)

Ticket #609 - Modificada a classe Factory e ProcessFactory? para automatizaro acesso ao objetos

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