@@ -33,6 +33,9 @@ |
||
33 | 33 | |
34 | 34 | protected $currencyDetails; |
35 | 35 | |
36 | + /** |
|
37 | + * @param \XMLReader $xml |
|
38 | + */ |
|
36 | 39 | private function getCurrencyExchangeRates($xml, $aryRelevantCurrencies) |
37 | 40 | { |
38 | 41 | switch ($xml->localName) { |
@@ -90,6 +90,9 @@ discard block |
||
90 | 90 | ]; |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param double $lngBase |
|
95 | + */ |
|
93 | 96 | private function getValues($lngBase, $aStngs) |
94 | 97 | { |
95 | 98 | $inDate = $this->tCmnSuperGlobals->get('ym'); |
@@ -265,6 +268,11 @@ discard block |
||
265 | 268 | return $this->setArrayToSelect($temp, $this->tCmnSuperGlobals->get('ym'), 'ym', ['size' => 1]); |
266 | 269 | } |
267 | 270 | |
271 | + /** |
|
272 | + * @param string $inName |
|
273 | + * @param integer $inSize |
|
274 | + * @param string $inAfterLabel |
|
275 | + */ |
|
268 | 276 | private function setFormInputText($inName, $inSize, $inAfterLabel) |
269 | 277 | { |
270 | 278 | $inputParameters = [ |
@@ -277,6 +285,9 @@ discard block |
||
277 | 285 | return $this->setStringIntoShortTag('input', $inputParameters) . ' ' . $inAfterLabel; |
278 | 286 | } |
279 | 287 | |
288 | + /** |
|
289 | + * @param string $configPath |
|
290 | + */ |
|
280 | 291 | private function setFormOutput($configPath) |
281 | 292 | { |
282 | 293 | $aryStngs = $this->readTypeFromJsonFileUniversal($configPath, 'valuesToCompute'); |
@@ -338,6 +349,9 @@ discard block |
||
338 | 349 | ]), 'fieldset', ['style' => 'float: left;']); |
339 | 350 | } |
340 | 351 | |
352 | + /** |
|
353 | + * @param string $text |
|
354 | + */ |
|
341 | 355 | private function setFormRow($text, $value, $type = 'amount') |
342 | 356 | { |
343 | 357 | $defaultCellStyle = $this->setFormatRow($text, $value); |
@@ -398,6 +412,9 @@ discard block |
||
398 | 412 | . '<h1>' . $this->tApp->gettext('i18n_ApplicationName') . '</h1>'; |
399 | 413 | } |
400 | 414 | |
415 | + /** |
|
416 | + * @param string $labelId |
|
417 | + */ |
|
401 | 418 | private function setLabel($labelId) |
402 | 419 | { |
403 | 420 | $labelInfo = $this->appFlags['FI'][$labelId]['Label']; |
@@ -416,6 +433,9 @@ discard block |
||
416 | 433 | return $this->setLabelSuffix($sReturn); |
417 | 434 | } |
418 | 435 | |
436 | + /** |
|
437 | + * @param string $text |
|
438 | + */ |
|
419 | 439 | private function setLabelSuffix($text) |
420 | 440 | { |
421 | 441 | $suffix = ''; |