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

Revision 1349, 610 bytes 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        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 . 'API' . SEP . 'BaseActivity.php');
7        /**
8         * @package Workflow
9         * @license http://www.gnu.org/copyleft/gpl.html GPL
10         */     
11        class workflow_baseactivity extends BaseActivity
12        {   /**
13                 * Construtor da classe workflow_baseactivity
14                 * @access public
15                 * @return object
16                 */
17                function workflow_baseactivity()
18                {
19                        parent::BaseActivity($GLOBALS['workflow']['workflowObjects']->getDBGalaxia()->Link_ID);
20                }
21        }
22?>
Note: See TracBrowser for help on using the repository browser.