commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / packages / ezc / autoload / workflow_autoload.php
1 <?php
2 /**
3 * Autoloader definition for the Workflow component.
4 *
5 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
6 * @license http://ez.no/licenses/new_bsd New BSD License
7 * @version 1.4beta1
8 * @filesource
9 * @package Workflow
10 */
11
12 return array(
13 'ezcWorkflowException' => 'Workflow/exceptions/exception.php',
14 'ezcWorkflowDefinitionStorageException' => 'Workflow/exceptions/definition_storage.php',
15 'ezcWorkflowExecutionException' => 'Workflow/exceptions/execution.php',
16 'ezcWorkflowInvalidInputException' => 'Workflow/exceptions/invalid_input.php',
17 'ezcWorkflowInvalidWorkflowException' => 'Workflow/exceptions/invalid_workflow.php',
18 'ezcWorkflowVisitable' => 'Workflow/interfaces/visitable.php',
19 'ezcWorkflowNode' => 'Workflow/interfaces/node.php',
20 'ezcWorkflowCondition' => 'Workflow/interfaces/condition.php',
21 'ezcWorkflowNodeBranch' => 'Workflow/interfaces/node_branch.php',
22 'ezcWorkflowNodeMerge' => 'Workflow/interfaces/node_merge.php',
23 'ezcWorkflowConditionBooleanSet' => 'Workflow/interfaces/condition_boolean_set.php',
24 'ezcWorkflowConditionComparison' => 'Workflow/interfaces/condition_comparison.php',
25 'ezcWorkflowConditionType' => 'Workflow/interfaces/condition_type.php',
26 'ezcWorkflowDefinitionStorage' => 'Workflow/interfaces/definition_storage.php',
27 'ezcWorkflowExecution' => 'Workflow/interfaces/execution.php',
28 'ezcWorkflowExecutionPlugin' => 'Workflow/interfaces/execution_plugin.php',
29 'ezcWorkflowNodeArithmeticBase' => 'Workflow/interfaces/node_arithmetic_base.php',
30 'ezcWorkflowNodeConditionalBranch' => 'Workflow/interfaces/node_conditional_branch.php',
31 'ezcWorkflowNodeEnd' => 'Workflow/nodes/end.php',
32 'ezcWorkflowNodeStart' => 'Workflow/nodes/start.php',
33 'ezcWorkflowNodeSynchronization' => 'Workflow/nodes/control_flow/synchronization.php',
34 'ezcWorkflowVisitor' => 'Workflow/interfaces/visitor.php',
35 'ezcWorkflow' => 'Workflow/workflow.php',
36 'ezcWorkflowConditionAnd' => 'Workflow/conditions/and.php',
37 'ezcWorkflowConditionInArray' => 'Workflow/conditions/in_array.php',
38 'ezcWorkflowConditionIsAnything' => 'Workflow/conditions/is_anything.php',
39 'ezcWorkflowConditionIsArray' => 'Workflow/conditions/is_array.php',
40 'ezcWorkflowConditionIsBool' => 'Workflow/conditions/is_bool.php',
41 'ezcWorkflowConditionIsEqual' => 'Workflow/conditions/is_equal.php',
42 'ezcWorkflowConditionIsEqualOrGreaterThan' => 'Workflow/conditions/is_equal_or_greater_than.php',
43 'ezcWorkflowConditionIsEqualOrLessThan' => 'Workflow/conditions/is_equal_or_less_than.php',
44 'ezcWorkflowConditionIsFalse' => 'Workflow/conditions/is_false.php',
45 'ezcWorkflowConditionIsFloat' => 'Workflow/conditions/is_float.php',
46 'ezcWorkflowConditionIsGreaterThan' => 'Workflow/conditions/is_greater_than.php',
47 'ezcWorkflowConditionIsInteger' => 'Workflow/conditions/is_integer.php',
48 'ezcWorkflowConditionIsLessThan' => 'Workflow/conditions/is_less_than.php',
49 'ezcWorkflowConditionIsNotEqual' => 'Workflow/conditions/is_not_equal.php',
50 'ezcWorkflowConditionIsObject' => 'Workflow/conditions/is_object.php',
51 'ezcWorkflowConditionIsString' => 'Workflow/conditions/is_string.php',
52 'ezcWorkflowConditionIsTrue' => 'Workflow/conditions/is_true.php',
53 'ezcWorkflowConditionNot' => 'Workflow/conditions/not.php',
54 'ezcWorkflowConditionOr' => 'Workflow/conditions/or.php',
55 'ezcWorkflowConditionVariable' => 'Workflow/conditions/variable.php',
56 'ezcWorkflowConditionVariables' => 'Workflow/conditions/variables.php',
57 'ezcWorkflowConditionXor' => 'Workflow/conditions/xor.php',
58 'ezcWorkflowDefinitionStorageXml' => 'Workflow/definition_storage/xml.php',
59 'ezcWorkflowExecutionListener' => 'Workflow/interfaces/execution_listener.php',
60 'ezcWorkflowExecutionListenerPlugin' => 'Workflow/execution/plugin/listener.php',
61 'ezcWorkflowExecutionNonInteractive' => 'Workflow/execution/non_interactive.php',
62 'ezcWorkflowExecutionVisualizerPlugin' => 'Workflow/execution/plugin/visualizer.php',
63 'ezcWorkflowExecutionVisualizerPluginOptions' => 'Workflow/options/execution_plugin_visualizer.php',
64 'ezcWorkflowNodeAction' => 'Workflow/nodes/action.php',
65 'ezcWorkflowNodeCancel' => 'Workflow/nodes/cancel.php',
66 'ezcWorkflowNodeDiscriminator' => 'Workflow/nodes/control_flow/discriminator.php',
67 'ezcWorkflowNodeExclusiveChoice' => 'Workflow/nodes/control_flow/exclusive_choice.php',
68 'ezcWorkflowNodeFinally' => 'Workflow/nodes/finally.php',
69 'ezcWorkflowNodeInput' => 'Workflow/nodes/variables/input.php',
70 'ezcWorkflowNodeLoop' => 'Workflow/nodes/control_flow/loop.php',
71 'ezcWorkflowNodeMultiChoice' => 'Workflow/nodes/control_flow/multi_choice.php',
72 'ezcWorkflowNodeParallelSplit' => 'Workflow/nodes/control_flow/parallel_split.php',
73 'ezcWorkflowNodeSimpleMerge' => 'Workflow/nodes/control_flow/simple_merge.php',
74 'ezcWorkflowNodeSubWorkflow' => 'Workflow/nodes/sub_workflow.php',
75 'ezcWorkflowNodeSynchronizingMerge' => 'Workflow/nodes/control_flow/synchronizing_merge.php',
76 'ezcWorkflowNodeVariableAdd' => 'Workflow/nodes/variables/add.php',
77 'ezcWorkflowNodeVariableDecrement' => 'Workflow/nodes/variables/decrement.php',
78 'ezcWorkflowNodeVariableDiv' => 'Workflow/nodes/variables/div.php',
79 'ezcWorkflowNodeVariableIncrement' => 'Workflow/nodes/variables/increment.php',
80 'ezcWorkflowNodeVariableMul' => 'Workflow/nodes/variables/mul.php',
81 'ezcWorkflowNodeVariableSet' => 'Workflow/nodes/variables/set.php',
82 'ezcWorkflowNodeVariableSub' => 'Workflow/nodes/variables/sub.php',
83 'ezcWorkflowNodeVariableUnset' => 'Workflow/nodes/variables/unset.php',
84 'ezcWorkflowServiceObject' => 'Workflow/interfaces/service_object.php',
85 'ezcWorkflowUtil' => 'Workflow/util.php',
86 'ezcWorkflowVariableHandler' => 'Workflow/interfaces/variable_handler.php',
87 'ezcWorkflowVisitorNodeCollector' => 'Workflow/visitors/node_collector.php',
88 'ezcWorkflowVisitorReset' => 'Workflow/visitors/reset.php',
89 'ezcWorkflowVisitorVerification' => 'Workflow/visitors/verification.php',
90 'ezcWorkflowVisitorVisualization' => 'Workflow/visitors/visualization.php',
91 'ezcWorkflowVisitorVisualizationOptions' => 'Workflow/options/visitor_visualization.php',
92 );
93 ?>