source: sandbox/workflow/branches/609/inc/class.workflow_gui.inc.php @ 2323

Revision 2323, 554 bytes checked in by pedroerp, 14 years ago (diff)

Ticket #609 - Removendo 'require_once's desnecessários.

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