source: branches/1.2/workflow/inc/class.workflow_acl.inc.php @ 1349

Revision 1349, 1.3 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1<?php
2/**************************************************************************\
3* eGroupWare                                                               *
4* http://www.egroupware.org                                                *
5* --------------------------------------------                             *
6*  This program is free software; you can redistribute it and/or modify it *
7*  under the terms of the GNU General Public License as published by the   *
8*  Free Software Foundation; either version 2 of the License, or (at your  *
9*  option) any later version.                                              *
10\**************************************************************************/
11
12require_once 'common.inc.php';
13require_once 'class.so_adminaccess.inc.php';
14
15/**
16 * Implementa métodos para checar direitos de acesso ao workflow
17 *
18 * @package Workflow
19 * @author Mauricio Luiz Viani - viani@celepar.pr.gov.br
20 * @author Sidnei Augusto Drovetto Jr. - drovetto@gmail.com
21 * @license http://www.gnu.org/copyleft/gpl.html GPL
22*/
23class workflow_acl extends so_adminaccess
24{
25        /**
26        * Construtor da classe workflow_acl
27        * @return object
28        * @access public
29        */
30        function workflow_acl()
31        {
32                parent::so_adminaccess($GLOBALS['workflow']['workflowObjects']->getDBGalaxia()->Link_ID);
33        }
34
35}
36
37?>
Note: See TracBrowser for help on using the repository browser.