removing galaxia library. See reworked workflow library in workflow/inc/engine

This commit is contained in:
Régis Leroy 2005-10-17 15:54:19 +00:00
parent c53b0302ba
commit c2c29c186b
9 changed files with 0 additions and 136 deletions

View File

@ -1,15 +0,0 @@
<?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);
}
}
?>

View File

@ -1,21 +0,0 @@
<?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 . 'BaseActivity.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'Activity.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'End.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'Join.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'Split.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'Standalone.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'Start.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'API' . SEP . 'activities' . SEP . 'SwitchActivity.php');
class workflow_baseactivity extends BaseActivity
{
function workflow_baseactivity()
{
parent::BaseActivity($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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 . 'GUI' . SEP . 'GUI.php');
class workflow_gui extends GUI
{
function workflow_gui()
{
parent::GUI($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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 . 'Instance.php');
class workflow_instance extends Instance
{
function workflow_Instance()
{
parent::Instance($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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 . 'InstanceManager.php');
class workflow_instancemanager extends InstanceManager
{
function workflow_instancemanager()
{
parent::InstanceManager($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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);
}
}
?>

View File

@ -1,16 +0,0 @@
<?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 . 'RoleManager.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'ProcessManager' . SEP . 'ProcessManager.php');
require_once(GALAXIA_LIBRARY . SEP . 'src' . SEP . 'ProcessManager' . SEP . 'ActivityManager.php');
class workflow_processmanager extends ProcessManager
{
function workflow_processmanager()
{
parent::ProcessManager($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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 . 'ProcessMonitor' . SEP . 'ProcessMonitor.php');
class workflow_processmonitor extends ProcessMonitor
{
function workflow_processmonitor()
{
parent::ProcessMonitor($GLOBALS['phpgw']->ADOdb);
}
}
?>

View File

@ -1,14 +0,0 @@
<?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 . 'RoleManager.php');
class workflow_rolemanager extends RoleManager
{
function workflow_rolemanager()
{
parent::RoleManager($GLOBALS['phpgw']->ADOdb);
}
}
?>