source: sandbox/workflow/branches/609/inc/class.workflow_rolemanager.inc.php @ 2233

Revision 2233, 613 bytes checked in by pedroerp, 14 years ago (diff)

Ticket #609 - Migração das classes do módulo workflow para a nova factory.

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