mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
galaxia workflow api
This commit is contained in:
parent
9772a1b82a
commit
6322ce9832
15
phpgwapi/inc/class.workflow_activitymanager.inc.php
Normal file
15
phpgwapi/inc/class.workflow_activitymanager.inc.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
21
phpgwapi/inc/class.workflow_baseactivity.inc.php
Normal file
21
phpgwapi/inc/class.workflow_baseactivity.inc.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_gui.inc.php
Normal file
14
phpgwapi/inc/class.workflow_gui.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_instance.inc.php
Normal file
14
phpgwapi/inc/class.workflow_instance.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_instancemanager.inc.php
Normal file
14
phpgwapi/inc/class.workflow_instancemanager.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_process.inc.php
Normal file
14
phpgwapi/inc/class.workflow_process.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
15
phpgwapi/inc/class.workflow_processmanager.inc.php
Normal file
15
phpgwapi/inc/class.workflow_processmanager.inc.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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 . '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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_processmonitor.inc.php
Normal file
14
phpgwapi/inc/class.workflow_processmonitor.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
14
phpgwapi/inc/class.workflow_rolemanager.inc.php
Normal file
14
phpgwapi/inc/class.workflow_rolemanager.inc.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user