ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilCallActivityElement.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13{
15
16 public function getPHP($element, ilWorkflowScaffold $class_object)
17 {
18 $code = "";
19 $element_id = ilBPMN2ParserUtils::xsIDToPHPVarname($element['attributes']['id']);
20 $this->element_varname = '$_v_' . $element_id;
21
23
24 $class_object->registerRequire('./Services/WorkflowEngine/classes/nodes/class.ilBasicNode.php');
25 $class_object->registerRequire('./Services/WorkflowEngine/classes/activities/class.ilStaticMethodCallActivity.php');
26
27 $data_inputs = $this->getDataInputAssociationIdentifiers($element);
28 $activity_parameters = '';
29 if (count($data_inputs)) {
30 $activity_parameters = '"' . implode('","', $data_inputs) . '"';
31 }
32
33 $data_outputs = $this->getDataOutputAssociationIdentifiers($element);
34 $activity_outputs = '';
35 if (count($data_outputs)) {
36 $activity_outputs = '"' . implode('","', $data_outputs) . '"';
37 }
38
39 $code .= '
40 ' . $this->element_varname . ' = new ilBasicNode($this);
41 $this->addNode(' . $this->element_varname . ');
42 ' . $this->element_varname . '->setName(\'' . $this->element_varname . '\');
43
44 ' . $this->element_varname . '_callActivity = new ilStaticMethodCallActivity(' . $this->element_varname . ');
45 ' . $this->element_varname . '_callActivity->setName(\'' . $this->element_varname . '_callActivity\');
46 ' . $this->element_varname . '_callActivity->setIncludeFilename("' . $library_definition['include_filename'] . '");
47 ' . $this->element_varname . '_callActivity->setClassAndMethodName("' . $library_definition['class_and_method'] . '");
48 ' . $this->element_varname . '_callActivity_params = array(' . $activity_parameters . ');
49 ' . $this->element_varname . '_callActivity->setParameters(' . $this->element_varname . '_callActivity_params);
50 ' . $this->element_varname . '_callActivity_outputs = array(' . $activity_outputs . ');
51 ' . $this->element_varname . '_callActivity->setOutputs(' . $this->element_varname . '_callActivity_outputs);
52 ' . $this->element_varname . '->addActivity(' . $this->element_varname . '_callActivity);
53 ';
54 $code .= $this->handleDataAssociations($element, $class_object, $this->element_varname);
55 return $code;
56 }
57}
An exception for terminatinating execution or to throw for unit testing.
static extractILIASLibraryCallDefinitionFromElement($element)
Class ilBaseElement.
handleDataAssociations($element, $class_object, $element_varname)
getDataOutputAssociationIdentifiers($element)
getDataInputAssociationIdentifiers($element)
Class ilCallActivityElement.
getPHP($element, ilWorkflowScaffold $class_object)
@noinspection PhpIncludeInspection
Class ilWorkflowScaffold.
$code
Definition: example_050.php:99