egroupware/phpgwapi/inc/class.workflow_activitymanager.inc.php

16 lines
503 B
PHP
Raw Normal View History

2004-08-07 21:46:10 +02:00
<?php
// include galaxia's configuration tailored to egroupware
require_once(PHPGW_API_INC . SEP . 'galaxia_workflow/config.egw.inc.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'ProcessManager' . SEP . 'ActivityManager.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'ProcessManager' . SEP . 'GraphViz.php');
class workflow_activitymanager extends ActivityManager
{
function workflow_activitymanager()
{
parent::ActivityManager($GLOBALS['phpgw']->ADOdb);
}
}
?>