source: sandbox/workflow/trunk/inc/class.workflow_acl.inc.php @ 2372

Revision 2372, 1.3 KB checked in by pedroerp, 14 years ago (diff)

Ticket #609 - Merged 2197:2356 /sandbox/workflow/branches/609/ em /sandbox/workflow/trunk.

  • 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(Factory::getInstance('WorkflowObjects')->getDBGalaxia()->Link_ID);
33        }
34
35}
36
37?>
Note: See TracBrowser for help on using the repository browser.