@@ -56,6 +56,9 @@ discard block |
||
56 | 56 | echo $this->setFooterHtml($interfaceElements['Application']); |
57 | 57 | } |
58 | 58 | |
59 | + /** |
|
60 | + * @param double $lngBase |
|
61 | + */ |
|
59 | 62 | private function getIncomeTaxValue($inDate, $lngBase, $vBA, $aryDeductions, $arySettings) |
60 | 63 | { |
61 | 64 | $rest = $lngBase - array_sum($aryDeductions); |
@@ -82,6 +85,9 @@ discard block |
||
82 | 85 | ]; |
83 | 86 | } |
84 | 87 | |
88 | + /** |
|
89 | + * @param double $lngBase |
|
90 | + */ |
|
85 | 91 | private function getValues($lngBase, $aStngs, $shLabels) |
86 | 92 | { |
87 | 93 | $inDate = $this->tCmnSuperGlobals->get('ym'); |
@@ -103,6 +109,9 @@ discard block |
||
103 | 109 | return $aReturn; |
104 | 110 | } |
105 | 111 | |
112 | + /** |
|
113 | + * @param integer $wkDay |
|
114 | + */ |
|
106 | 115 | private function getValuesPrimary($inDate, $wkDay, $lngBase, $aStngs, $shLbl) |
107 | 116 | { |
108 | 117 | $this->setHealthFundTax($inDate, $lngBase, $aStngs[$shLbl['HFP']], $aStngs[$shLbl['HFUL']]); |
@@ -161,6 +170,11 @@ discard block |
||
161 | 170 | return $sReturn; |
162 | 171 | } |
163 | 172 | |
173 | + /** |
|
174 | + * @param string $inName |
|
175 | + * @param integer $inSize |
|
176 | + * @param string $inAfterLabel |
|
177 | + */ |
|
164 | 178 | private function setFormInputText($inName, $inSize, $inAfterLabel) |
165 | 179 | { |
166 | 180 | $inputParameters = [ |
@@ -173,6 +187,9 @@ discard block |
||
173 | 187 | return $this->setStringIntoShortTag('input', $inputParameters) . ' ' . $inAfterLabel; |
174 | 188 | } |
175 | 189 | |
190 | + /** |
|
191 | + * @param string $configPath |
|
192 | + */ |
|
176 | 193 | private function setFormOutput($configPath, $shLabels) |
177 | 194 | { |
178 | 195 | $aryStngs = $this->readTypeFromJsonFileUniversal($configPath, 'valuesToCompute'); |
@@ -275,6 +292,10 @@ discard block |
||
275 | 292 | return implode('', $cellValue); |
276 | 293 | } |
277 | 294 | |
295 | + /** |
|
296 | + * @param string $text1 |
|
297 | + * @param string $text2 |
|
298 | + */ |
|
278 | 299 | private function setFormRowTwoLabels($text1, $text2, $value) |
279 | 300 | { |
280 | 301 | return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">' |