mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
15 lines
358 B
PHP
15 lines
358 B
PHP
|
<?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 . 'API' . SEP . 'Process.php');
|
||
|
|
||
|
class workflow_process extends Process
|
||
|
{
|
||
|
function workflow_process()
|
||
|
{
|
||
|
parent::Process($GLOBALS['phpgw']->ADOdb);
|
||
|
}
|
||
|
}
|
||
|
?>
|