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

Revision 3167, 618 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        require_once 'common.inc.php';
3        // include galaxia's configuration tailored to egroupware
4        if (!defined('GALAXIA_LIBRARY'))
5                require_once 'engine/config.egw.inc.php';
6
7        require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'Instance.php');
8        /**
9         * @package Workflow
10         * @license http://www.gnu.org/copyleft/gpl.html GPL
11         */
12        class workflow_instance extends Instance
13        {   /**
14                 * Construtor da classe workflow_Instance
15                 * @access public
16                 * @return object
17                 */
18                function workflow_Instance()
19                {
20                        parent::Instance(Factory::getInstance('WorkflowObjects')->getDBGalaxia()->Link_ID);
21                }
22        }
23?>
Note: See TracBrowser for help on using the repository browser.