source: sandbox/workflow/flumen/inc/class.workflow_gui.inc.php @ 1293

Revision 1293, 806 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 . 'GUI' . SEP . 'GUI.php');
7        require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'Process.php');
8        require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'Instance.php');
9        require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'common' . SEP . 'WfSecurity.php');
10        /**
11         * @package Workflow
12         * @license http://www.gnu.org/copyleft/gpl.html GPL
13         */
14        class workflow_gui extends GUI
15        {  /**
16                 * Construtor da classe workflow_gui
17                 * @access public
18                 * @return object
19                 */
20                function workflow_gui()
21                {
22                        parent::GUI(Factory::getInstance('WorkflowObjects')->getDBGalaxia()->Link_ID);
23                }
24        }
25?>
Note: See TracBrowser for help on using the repository browser.