@@ -93,7 +93,7 @@ |
||
93 | 93 | * @param array $data Form values |
94 | 94 | * @param Collection $object |
95 | 95 | * |
96 | - * @return object |
|
96 | + * @return NodeInterface |
|
97 | 97 | */ |
98 | 98 | public function hydrate(array $data, $object) |
99 | 99 | { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $data = []; |
54 | 54 | $this->flattenTree($object, $data); |
55 | 55 | |
56 | - return ['items' => $data ]; |
|
56 | + return ['items' => $data]; |
|
57 | 57 | |
58 | 58 | } |
59 | 59 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | if ($tree->hasChildren()) { |
81 | 81 | foreach ($tree->getChildren() as $i => $child) { |
82 | - $this->flattenTree($child, $data, $curId . '-' . ($i + 1) ); |
|
82 | + $this->flattenTree($child, $data, $curId.'-'.($i + 1)); |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * unflatten tree |
117 | 117 | */ |
118 | 118 | $items = $data['items']; |
119 | - $tree = [ '__root__' => array_shift($items) ]; |
|
119 | + $tree = ['__root__' => array_shift($items)]; |
|
120 | 120 | |
121 | 121 | foreach ($items as $item) { |
122 | 122 | $parent = substr($item['current'], 0, strrpos($item['current'], '-')); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | * |
143 | 143 | * @return array |
144 | 144 | */ |
145 | - protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot=true) |
|
145 | + protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot = true) |
|
146 | 146 | { |
147 | 147 | $key = $isRoot ? $node->getValue() : $this->getItemValue($node); |
148 | 148 | $name = $node->getName(); |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | */ |
182 | 182 | private function getItemValue(NodeInterface $item) |
183 | 183 | { |
184 | - $parts = [ $item->getValue() ]; |
|
184 | + $parts = [$item->getValue()]; |
|
185 | 185 | |
186 | 186 | while ($item = $item->getParent()) { |
187 | 187 | $parts[] = $item->getValue(); |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $parent = $nextParent; |
72 | 72 | } |
73 | 73 | $nameParts[] = $item->getName(); |
74 | - $items[] = join(' / ' , $nameParts); |
|
74 | + $items[] = join(' / ', $nameParts); |
|
75 | 75 | |
76 | 76 | } |
77 | 77 |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $renderer->headscript()->appendFile($renderer->basePath('Core/js/jquery.summary-form.js')); |
68 | 68 | |
69 | 69 | $label = $form->getLabel(); |
70 | - $labelContent = $label ? '<div class="sf-headline"><h3>' . $this->getView()->translate($label) . '</h3></div>' : ''; |
|
70 | + $labelContent = $label ? '<div class="sf-headline"><h3>'.$this->getView()->translate($label).'</h3></div>' : ''; |
|
71 | 71 | $formContent = $this->renderForm($form, $layout, $parameter); |
72 | 72 | $summaryContent = $this->renderSummary($form); |
73 | 73 | |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | public function renderForm(SummaryFormInterface $form, $layout = Form::LAYOUT_HORIZONTAL, $parameter = array()) |
132 | 132 | { |
133 | 133 | /* @var $form SummaryFormInterface|\Core\Form\SummaryForm */ |
134 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
135 | - $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
134 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
135 | + $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
136 | 136 | $fieldset = $form->getBaseFieldset(); |
137 | 137 | $resetPartial = false; |
138 | 138 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | $form->prepare(); |
167 | 167 | $baseFieldset = $form->getBaseFieldset(); |
168 | 168 | if (!isset($baseFieldset)) { |
169 | - throw new \InvalidArgumentException('For the Form ' . get_class($form) . ' there is no Basefieldset'); |
|
169 | + throw new \InvalidArgumentException('For the Form '.get_class($form).' there is no Basefieldset'); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | $dataAttributesMarkup = ''; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | } |
180 | 180 | } |
181 | 181 | |
182 | - $markup = '<div class="panel panel-default" style="min-height: 100px;"' . $dataAttributesMarkup . '> |
|
182 | + $markup = '<div class="panel panel-default" style="min-height: 100px;"'.$dataAttributesMarkup.'> |
|
183 | 183 | <div class="panel-body"><div class="sf-controls">%s</div>%s</div></div>'; |
184 | 184 | |
185 | 185 | $view = $this->getView(); |
@@ -192,9 +192,9 @@ discard block |
||
192 | 192 | |
193 | 193 | if (($controlButtons = $form->getOption('control_buttons')) !== null) |
194 | 194 | { |
195 | - $buttonMarkup .= PHP_EOL . implode(PHP_EOL, array_map(function (array $buttonSpec) use ($view) { |
|
196 | - return '<button type="button" class="btn btn-default btn-xs' . (isset($buttonSpec['class']) ? ' ' . $buttonSpec['class'] : '') . '">' |
|
197 | - . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-' . $buttonSpec['icon'] . '"></span> ' : '') |
|
195 | + $buttonMarkup .= PHP_EOL.implode(PHP_EOL, array_map(function(array $buttonSpec) use ($view) { |
|
196 | + return '<button type="button" class="btn btn-default btn-xs'.(isset($buttonSpec['class']) ? ' '.$buttonSpec['class'] : '').'">' |
|
197 | + . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-'.$buttonSpec['icon'].'"></span> ' : '') |
|
198 | 198 | . $view->translate($buttonSpec['label']) |
199 | 199 | . '</button>'; |
200 | 200 | }, $controlButtons)); |
@@ -234,10 +234,10 @@ discard block |
||
234 | 234 | } |
235 | 235 | |
236 | 236 | if ($element instanceof ViewPartialProviderInterface) { |
237 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
237 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
238 | 238 | $origPartial = $element->getViewPartial(); |
239 | 239 | $partial = "$origPartial.view"; |
240 | - $partialParams = array( |
|
240 | + $partialParams = array( |
|
241 | 241 | 'element' => $element |
242 | 242 | ); |
243 | 243 | if (!$renderer->resolver($partial)) { |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | |
254 | 254 | if ($element instanceof FieldsetInterface) { |
255 | 255 | if (!$element instanceof FormInterface && $label) { |
256 | - $markup .= '<h4>' . $label . '</h4>'; |
|
256 | + $markup .= '<h4>'.$label.'</h4>'; |
|
257 | 257 | } |
258 | 258 | foreach ($element as $el) { |
259 | 259 | $markup .= $this->renderSummaryElement($el); |
@@ -282,11 +282,11 @@ discard block |
||
282 | 282 | if (!is_array($optVal) || !array_key_exists($optionKey, $optVal['options'])) { continue; } |
283 | 283 | |
284 | 284 | $optGroupLabel = isset($optVal['label']) ? $translator->translate($optVal['label']) : $optKey; |
285 | - $multiOptions[] = $optGroupLabel . ' / ' . $translator->translate($optVal['options'][$optionKey]); |
|
285 | + $multiOptions[] = $optGroupLabel.' / '.$translator->translate($optVal['options'][$optionKey]); |
|
286 | 286 | } |
287 | 287 | } |
288 | 288 | |
289 | - $elementValue = join(', ' , $multiOptions); |
|
289 | + $elementValue = join(', ', $multiOptions); |
|
290 | 290 | // $numberOfmultiOptions = count($multiOptions); |
291 | 291 | // foreach ($multiOptions as $optGroupLabel => $vals) { |
292 | 292 | // $elementValue[] = ($numberOfmultiOptions > 1 || $optGroupLabel !== $generalOptGroupName ? "<b>$optGroupLabel</b><br>" : '') . join(', ', $vals); |
@@ -305,10 +305,10 @@ discard block |
||
305 | 305 | $markup .= '<div class="row">'; |
306 | 306 | $col = 12; |
307 | 307 | if ($label) { |
308 | - $markup .= '<div class="col-md-3 yk-label"><label>' . $label . '</label></div>'; |
|
308 | + $markup .= '<div class="col-md-3 yk-label"><label>'.$label.'</label></div>'; |
|
309 | 309 | $col = 9; |
310 | 310 | } |
311 | - $markup .= '<div class="col-md-' . $col . '">' . $elementValue . '</div>' |
|
311 | + $markup .= '<div class="col-md-'.$col.'">'.$elementValue.'</div>' |
|
312 | 312 | . '</div>'; |
313 | 313 | return $markup; |
314 | 314 | } |
@@ -90,24 +90,24 @@ |
||
90 | 90 | $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
91 | 91 | $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
92 | 92 | $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
93 | - . $formContainer($tabElement, $layout, $parameter) |
|
94 | - . '</div>'; |
|
93 | + . $formContainer($tabElement, $layout, $parameter) |
|
94 | + . '</div>'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
98 | - . '<ul>' . $tabsNav . '</ul>' |
|
99 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
98 | + . '<ul>' . $tabsNav . '</ul>' |
|
99 | + . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
100 | 100 | if ($containerParams['pager']) { |
101 | 101 | $content .='<ul class="pager wizard">' |
102 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
105 | - . (false !== $containerParams['finish_label'] |
|
102 | + . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | + . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | + . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
105 | + . (false !== $containerParams['finish_label'] |
|
106 | 106 | ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
107 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
107 | + . $translate($containerParams['finish_label']) . ' •</a>' |
|
108 | 108 | : '' |
109 | 109 | ) |
110 | - . '</li></ul>'; |
|
110 | + . '</li></ul>'; |
|
111 | 111 | } |
112 | 112 | $content .= '</div>'; |
113 | 113 |
@@ -83,28 +83,28 @@ |
||
83 | 83 | |
84 | 84 | $containerId = $container->getAttribute('id'); |
85 | 85 | if (!$containerId) { |
86 | - $containerId = 'wizardcontainer-' . strtolower(str_replace('\\', '-', get_class($container))); |
|
86 | + $containerId = 'wizardcontainer-'.strtolower(str_replace('\\', '-', get_class($container))); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | foreach ($container as $tabElement) { |
90 | - $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
|
91 | - $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
|
92 | - $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
|
90 | + $tabId = $containerId.'-'.strtolower($tabElement->getName()); |
|
91 | + $tabsNav .= '<li><a data-toggle="tab" href="#'.$tabId.'">'.$translate($tabElement->getLabel()).'</a></li>'; |
|
92 | + $tabsContent .= '<div class="tab-pane" id="'.$tabId.'">' |
|
93 | 93 | . $formContainer($tabElement, $layout, $parameter) |
94 | 94 | . '</div>'; |
95 | 95 | } |
96 | 96 | |
97 | - $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
|
98 | - . '<ul>' . $tabsNav . '</ul>' |
|
99 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
97 | + $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="'.$containerId.'">' |
|
98 | + . '<ul>'.$tabsNav.'</ul>' |
|
99 | + . '<div class="tab-content">'.$tabsContent.'</div>'; |
|
100 | 100 | if ($containerParams['pager']) { |
101 | - $content .='<ul class="pager wizard">' |
|
102 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
101 | + $content .= '<ul class="pager wizard">' |
|
102 | + . '<li class="previous"><a href="javascript:;">← '.$translate('previous').'</a></li>' |
|
103 | + . '<li class="next"><a href="javascript:;">'.$translate('Next').' →</a></li>' |
|
104 | + . '<li class="finish'.($containerParams['finish_enabled'] ? '' : ' disabled').'">' |
|
105 | 105 | . (false !== $containerParams['finish_label'] |
106 | - ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
|
107 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
106 | + ? '<a class="pull-right" href="'.$containerParams['finish_href'].'">' |
|
107 | + . $translate($containerParams['finish_label']).' •</a>' |
|
108 | 108 | : '' |
109 | 109 | ) |
110 | 110 | . '</li></ul>'; |
@@ -79,13 +79,13 @@ |
||
79 | 79 | 'name' => [ |
80 | 80 | 'required' => true, |
81 | 81 | 'filters' => [ |
82 | - [ 'name' => 'StringTrim' ], |
|
82 | + ['name' => 'StringTrim'], |
|
83 | 83 | ], |
84 | 84 | ], |
85 | 85 | 'value' => [ |
86 | 86 | 'required' => false, |
87 | 87 | 'filters' => [ |
88 | - [ 'name' => 'StringTrim' ], |
|
88 | + ['name' => 'StringTrim'], |
|
89 | 89 | ], |
90 | 90 | ], |
91 | 91 | ]; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | * |
36 | 36 | * @var array |
37 | 37 | */ |
38 | - protected $scripts = [ '/js/html.sortable.min.js', 'Core/js/forms.tree-management.js' ]; |
|
38 | + protected $scripts = ['/js/html.sortable.min.js', 'Core/js/forms.tree-management.js']; |
|
39 | 39 | |
40 | 40 | /** |
41 | 41 | * Attributes. |
@@ -67,7 +67,7 @@ |
||
67 | 67 | 'lang/jobs/view', |
68 | 68 | [], |
69 | 69 | [ |
70 | - 'query' => [ 'id' => $job->getId() ], |
|
70 | + 'query' => ['id' => $job->getId()], |
|
71 | 71 | 'force_canonical' => true |
72 | 72 | ] |
73 | 73 | ); |
@@ -38,14 +38,14 @@ |
||
38 | 38 | |
39 | 39 | $globalConfigPaths = []; |
40 | 40 | foreach ($config['config_glob_paths'] as $path) { |
41 | - $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)) . DIRECTORY_SEPARATOR; |
|
41 | + $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)).DIRECTORY_SEPARATOR; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | $moduleConfigPath = '.'; |
45 | 45 | foreach ($config['module_paths'] as $path) { |
46 | - $path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; |
|
47 | - if (file_exists($path . 'Jobs')) { |
|
48 | - $moduleConfigPath = $path . 'Jobs' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR; |
|
46 | + $path = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR; |
|
47 | + if (file_exists($path.'Jobs')) { |
|
48 | + $moduleConfigPath = $path.'Jobs'.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR; |
|
49 | 49 | break; |
50 | 50 | } |
51 | 51 | } |