Author: Derick Rethans Date: 2007-05-03 14:07:09 +0200 (Thu, 03 May 2007) New Revision: 5000
Log: - Update autoload file for Workflow, they are now sorted according to dependencies. Modified: trunk/Workflow/src/workflow_autoload.php Modified: trunk/Workflow/src/workflow_autoload.php =================================================================== --- trunk/Workflow/src/workflow_autoload.php 2007-05-03 12:07:03 UTC (rev 4999) +++ trunk/Workflow/src/workflow_autoload.php 2007-05-03 12:07:09 UTC (rev 5000) @@ -1,87 +1,81 @@ <?php /** - * Autoload map for Workflow package. + * Autoloader definition for the Workflow component. * - * @package Workflow - * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License + * @version //autogentag// * @filesource + * @package Workflow */ -return array( 'ezcWorkflowConditionAnd' => 'Workflow/conditions/and.php', - 'ezcWorkflowConditionIsAnything' => 'Workflow/conditions/is_anything.php', - 'ezcWorkflowConditionIsArray' => 'Workflow/conditions/is_array.php', - 'ezcWorkflowConditionIsBool' => 'Workflow/conditions/is_bool.php', - 'ezcWorkflowConditionIsEqual' => 'Workflow/conditions/is_equal.php', - 'ezcWorkflowConditionIsEqualOrGreaterThan' => 'Workflow/conditions/is_equal_or_greater_than.php', - 'ezcWorkflowConditionIsEqualOrLessThan' => 'Workflow/conditions/is_equal_or_less_than.php', - 'ezcWorkflowConditionIsFalse' => 'Workflow/conditions/is_false.php', - 'ezcWorkflowConditionIsFloat' => 'Workflow/conditions/is_float.php', - 'ezcWorkflowConditionIsGreaterThan' => 'Workflow/conditions/is_greater_than.php', - 'ezcWorkflowConditionIsInteger' => 'Workflow/conditions/is_integer.php', - 'ezcWorkflowConditionIsLessThan' => 'Workflow/conditions/is_less_than.php', - 'ezcWorkflowConditionIsNotEqual' => 'Workflow/conditions/is_not_equal.php', - 'ezcWorkflowConditionIsObject' => 'Workflow/conditions/is_object.php', - 'ezcWorkflowConditionIsString' => 'Workflow/conditions/is_string.php', - 'ezcWorkflowConditionIsTrue' => 'Workflow/conditions/is_true.php', - 'ezcWorkflowConditionNot' => 'Workflow/conditions/not.php', - 'ezcWorkflowConditionOr' => 'Workflow/conditions/or.php', - 'ezcWorkflowConditionVariable' => 'Workflow/conditions/variable.php', - 'ezcWorkflowConditionXor' => 'Workflow/conditions/xor.php', - - 'ezcWorkflowDefinitionXml' => 'Workflow/definitions/xml.php', - - 'ezcWorkflowException' => 'Workflow/exceptions/exception.php', - 'ezcWorkflowDefinitionException' => 'Workflow/exceptions/definition.php', - 'ezcWorkflowExecutionException' => 'Workflow/exceptions/execution.php', - 'ezcWorkflowInvalidDefinitionException' => 'Workflow/exceptions/invalid_definition.php', - 'ezcWorkflowInvalidInputException' => 'Workflow/exceptions/invalid_input.php', - - 'ezcWorkflowExecutionNonInteractive' => 'Workflow/execution/non_interactive.php', - - 'ezcWorkflowCondition' => 'Workflow/interfaces/condition.php', - 'ezcWorkflowConditionBooleanSet' => 'Workflow/interfaces/condition_boolean_set.php', - 'ezcWorkflowConditionComparison' => 'Workflow/interfaces/condition_comparison.php', - 'ezcWorkflowConditionType' => 'Workflow/interfaces/condition_type.php', - 'ezcWorkflowDefinition' => 'Workflow/interfaces/definition.php', - 'ezcWorkflowExecution' => 'Workflow/interfaces/execution.php', - 'ezcWorkflowExecutionListener' => 'Workflow/interfaces/execution_listener.php', - 'ezcWorkflowNode' => 'Workflow/interfaces/node.php', - 'ezcWorkflowNodeBranch' => 'Workflow/interfaces/node_branch.php', - 'ezcWorkflowNodeConditionalBranch' => 'Workflow/interfaces/node_conditional_branch.php', - 'ezcWorkflowNodeMerge' => 'Workflow/interfaces/node_merge.php', - 'ezcWorkflowNodeVariable' => 'Workflow/interfaces/node_variable.php', - 'ezcWorkflowServiceObject' => 'Workflow/interfaces/service_object.php', - 'ezcWorkflowRollbackableServiceObject' => 'Workflow/interfaces/rollbackable_service_object.php', - 'ezcWorkflowVariableHandler' => 'Workflow/interfaces/variable_handler.php', - 'ezcWorkflowVisitable' => 'Workflow/interfaces/visitable.php', - 'ezcWorkflowVisitor' => 'Workflow/interfaces/visitor.php', - - 'ezcWorkflowNodeAction' => 'Workflow/nodes/action.php', - 'ezcWorkflowNodeParallelSplit' => 'Workflow/nodes/control_flow/parallel_split.php', - 'ezcWorkflowNodeExclusiveChoice' => 'Workflow/nodes/control_flow/exclusive_choice.php', - 'ezcWorkflowNodeMultiChoice' => 'Workflow/nodes/control_flow/multi_choice.php', - 'ezcWorkflowNodeDiscriminator' => 'Workflow/nodes/control_flow/discriminator.php', - 'ezcWorkflowNodeEnd' => 'Workflow/nodes/end.php', - 'ezcWorkflowNodeInput' => 'Workflow/nodes/variables/input.php', - 'ezcWorkflowNodeSimpleMerge' => 'Workflow/nodes/control_flow/simple_merge.php', - 'ezcWorkflowNodeStart' => 'Workflow/nodes/start.php', - 'ezcWorkflowNodeSubWorkflow' => 'Workflow/nodes/sub_workflow.php', - 'ezcWorkflowNodeSynchronization' => 'Workflow/nodes/control_flow/synchronization.php', - 'ezcWorkflowNodeSynchronizingMerge' => 'Workflow/nodes/control_flow/synchronizing_merge.php', - 'ezcWorkflowNodeVariableSet' => 'Workflow/nodes/variables/set.php', - 'ezcWorkflowNodeVariableUnset' => 'Workflow/nodes/variables/unset.php', - 'ezcWorkflowNodeVariableAdd' => 'Workflow/nodes/variables/add.php', - 'ezcWorkflowNodeVariableDiv' => 'Workflow/nodes/variables/div.php', - 'ezcWorkflowNodeVariableMul' => 'Workflow/nodes/variables/mul.php', - 'ezcWorkflowNodeVariableSub' => 'Workflow/nodes/variables/sub.php', - 'ezcWorkflowNodeVariableDecrement' => 'Workflow/nodes/variables/decrement.php', - 'ezcWorkflowNodeVariableIncrement' => 'Workflow/nodes/variables/increment.php', - - 'ezcWorkflowVisitorDot' => 'Workflow/visitors/dot.php', - - 'ezcWorkflowUtil' => 'Workflow/util.php', - 'ezcWorkflow' => 'Workflow/workflow.php' - ); +return array( + 'ezcWorkflowException' => 'Workflow/exceptions/exception.php', + 'ezcWorkflowDefinitionException' => 'Workflow/exceptions/definition.php', + 'ezcWorkflowExecutionException' => 'Workflow/exceptions/execution.php', + 'ezcWorkflowInvalidDefinitionException' => 'Workflow/exceptions/invalid_definition.php', + 'ezcWorkflowInvalidInputException' => 'Workflow/exceptions/invalid_input.php', + 'ezcWorkflowVisitable' => 'Workflow/interfaces/visitable.php', + 'ezcWorkflowNode' => 'Workflow/interfaces/node.php', + 'ezcWorkflowCondition' => 'Workflow/interfaces/condition.php', + 'ezcWorkflowNodeBranch' => 'Workflow/interfaces/node_branch.php', + 'ezcWorkflowNodeMerge' => 'Workflow/interfaces/node_merge.php', + 'ezcWorkflowConditionBooleanSet' => 'Workflow/interfaces/condition_boolean_set.php', + 'ezcWorkflowConditionComparison' => 'Workflow/interfaces/condition_comparison.php', + 'ezcWorkflowConditionType' => 'Workflow/interfaces/condition_type.php', + 'ezcWorkflowDefinition' => 'Workflow/interfaces/definition.php', + 'ezcWorkflowExecution' => 'Workflow/interfaces/execution.php', + 'ezcWorkflowNodeConditionalBranch' => 'Workflow/interfaces/node_conditional_branch.php', + 'ezcWorkflowNodeSynchronization' => 'Workflow/nodes/control_flow/synchronization.php', + 'ezcWorkflowNodeVariable' => 'Workflow/interfaces/node_variable.php', + 'ezcWorkflowServiceObject' => 'Workflow/interfaces/service_object.php', + 'ezcWorkflowVisitor' => 'Workflow/interfaces/visitor.php', + 'ezcWorkflow' => 'Workflow/workflow.php', + 'ezcWorkflowConditionAnd' => 'Workflow/conditions/and.php', + 'ezcWorkflowConditionIsAnything' => 'Workflow/conditions/is_anything.php', + 'ezcWorkflowConditionIsArray' => 'Workflow/conditions/is_array.php', + 'ezcWorkflowConditionIsBool' => 'Workflow/conditions/is_bool.php', + 'ezcWorkflowConditionIsEqual' => 'Workflow/conditions/is_equal.php', + 'ezcWorkflowConditionIsEqualOrGreaterThan' => 'Workflow/conditions/is_equal_or_greater_than.php', + 'ezcWorkflowConditionIsEqualOrLessThan' => 'Workflow/conditions/is_equal_or_less_than.php', + 'ezcWorkflowConditionIsFalse' => 'Workflow/conditions/is_false.php', + 'ezcWorkflowConditionIsFloat' => 'Workflow/conditions/is_float.php', + 'ezcWorkflowConditionIsGreaterThan' => 'Workflow/conditions/is_greater_than.php', + 'ezcWorkflowConditionIsInteger' => 'Workflow/conditions/is_integer.php', + 'ezcWorkflowConditionIsLessThan' => 'Workflow/conditions/is_less_than.php', + 'ezcWorkflowConditionIsNotEqual' => 'Workflow/conditions/is_not_equal.php', + 'ezcWorkflowConditionIsObject' => 'Workflow/conditions/is_object.php', + 'ezcWorkflowConditionIsString' => 'Workflow/conditions/is_string.php', + 'ezcWorkflowConditionIsTrue' => 'Workflow/conditions/is_true.php', + 'ezcWorkflowConditionNot' => 'Workflow/conditions/not.php', + 'ezcWorkflowConditionOr' => 'Workflow/conditions/or.php', + 'ezcWorkflowConditionVariable' => 'Workflow/conditions/variable.php', + 'ezcWorkflowConditionXor' => 'Workflow/conditions/xor.php', + 'ezcWorkflowDefinitionXml' => 'Workflow/definitions/xml.php', + 'ezcWorkflowExecutionListener' => 'Workflow/interfaces/execution_listener.php', + 'ezcWorkflowExecutionNonInteractive' => 'Workflow/execution/non_interactive.php', + 'ezcWorkflowNodeAction' => 'Workflow/nodes/action.php', + 'ezcWorkflowNodeDiscriminator' => 'Workflow/nodes/control_flow/discriminator.php', + 'ezcWorkflowNodeEnd' => 'Workflow/nodes/end.php', + 'ezcWorkflowNodeExclusiveChoice' => 'Workflow/nodes/control_flow/exclusive_choice.php', + 'ezcWorkflowNodeInput' => 'Workflow/nodes/variables/input.php', + 'ezcWorkflowNodeMultiChoice' => 'Workflow/nodes/control_flow/multi_choice.php', + 'ezcWorkflowNodeParallelSplit' => 'Workflow/nodes/control_flow/parallel_split.php', + 'ezcWorkflowNodeSimpleMerge' => 'Workflow/nodes/control_flow/simple_merge.php', + 'ezcWorkflowNodeStart' => 'Workflow/nodes/start.php', + 'ezcWorkflowNodeSubWorkflow' => 'Workflow/nodes/sub_workflow.php', + 'ezcWorkflowNodeSynchronizingMerge' => 'Workflow/nodes/control_flow/synchronizing_merge.php', + 'ezcWorkflowNodeVariableAdd' => 'Workflow/nodes/variables/add.php', + 'ezcWorkflowNodeVariableDecrement' => 'Workflow/nodes/variables/decrement.php', + 'ezcWorkflowNodeVariableDiv' => 'Workflow/nodes/variables/div.php', + 'ezcWorkflowNodeVariableIncrement' => 'Workflow/nodes/variables/increment.php', + 'ezcWorkflowNodeVariableMul' => 'Workflow/nodes/variables/mul.php', + 'ezcWorkflowNodeVariableSet' => 'Workflow/nodes/variables/set.php', + 'ezcWorkflowNodeVariableSub' => 'Workflow/nodes/variables/sub.php', + 'ezcWorkflowNodeVariableUnset' => 'Workflow/nodes/variables/unset.php', + 'ezcWorkflowRollbackableServiceObject' => 'Workflow/interfaces/rollbackable_service_object.php', + 'ezcWorkflowUtil' => 'Workflow/util.php', + 'ezcWorkflowVariableHandler' => 'Workflow/interfaces/variable_handler.php', + 'ezcWorkflowVisitorDot' => 'Workflow/visitors/dot.php', +); ?> -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
