| Conditions | 93 |
| Paths | > 20000 |
| Total Lines | 399 |
| Code Lines | 306 |
| Lines | 54 |
| Ratio | 13.53 % |
| Changes | 7 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 117 | protected function setArrayToTable($aElements, $ftrs = null, $bKpFlPge = true) |
||
| 118 | { |
||
| 119 | $rows = count($aElements); |
||
| 120 | if ($rows == 0) { |
||
| 121 | $divTab = [ |
||
| 122 | 'start' => '', |
||
| 123 | 'end' => '', |
||
| 124 | ]; |
||
| 125 | if (array_key_exists('showGroupingCounter', $ftrs)) { |
||
| 126 | if (array_key_exists('grouping_cell_type', $ftrs) && ($ftrs['grouping_cell_type'] == 'tab')) { |
||
| 127 | $ditTitle = 'No data found'; |
||
| 128 | if (isset($ftrs['showGroupingCounter'])) { |
||
| 129 | $ditTitle .= ' (0)'; |
||
| 130 | } |
||
| 131 | $divTab = [ |
||
| 132 | 'start' => '<div class="tabbertab tabbertabdefault" id="tab_NoData" title="' . $ditTitle . '">', |
||
| 133 | 'end' => '</div><!-- from tab_NoData -->', |
||
| 134 | ]; |
||
| 135 | if (!isset($ftrs['noGlobalTab'])) { |
||
| 136 | $divTab = [ |
||
| 137 | 'start' => '<div class="tabber" id="tab">' . $divTab['start'], |
||
| 138 | 'end' => $divTab['end'] . '</div><!-- from global Tab -->', |
||
| 139 | ]; |
||
| 140 | } |
||
| 141 | } |
||
| 142 | } |
||
| 143 | return $divTab['start'] |
||
| 144 | . $this->setFeedbackModern('error', 'Error', $this->lclMsgCmn('i18n_NoData')) |
||
| 145 | . $divTab['end']; |
||
| 146 | } |
||
| 147 | if (isset($ftrs['limits'])) { |
||
| 148 | $ftrs['limits'][1] = min($ftrs['limits'][1], $ftrs['limits'][2]); |
||
| 149 | if ($ftrs['limits'][2] > $ftrs['limits'][1]) { |
||
| 150 | $iStartingPageRecord = 1; |
||
| 151 | } |
||
| 152 | } |
||
| 153 | $sReturn = ''; |
||
| 154 | if (isset($ftrs['hidden_columns'])) { |
||
| 155 | $hdClmns = $this->setArrayValuesAsKey($ftrs['hidden_columns']); |
||
| 156 | } else { |
||
| 157 | $hdClmns = ['']; |
||
| 158 | } |
||
| 159 | if ((isset($ftrs['actions']['checkbox_inlineEdit'])) || (isset($ftrs['actions']['checkbox']))) { |
||
| 160 | $checkboxFormId = 'frm' . date('YmdHis'); |
||
| 161 | $sReturn .= '<form id="' . $checkboxFormId . '" ' . 'name="' . $checkboxFormId |
||
| 162 | . '" method="post" ' . ' action="' . $_SERVER['PHP_SELF'] . '" >'; |
||
| 163 | } |
||
| 164 | $tbl['Def'] = '<table' |
||
| 165 | . (isset($ftrs['table_style']) ? ' style="' . $ftrs['table_style'] . '"' : '') |
||
| 166 | . (isset($ftrs['table_class']) ? ' class="' . $ftrs['table_class'] . '"' : '') |
||
| 167 | . '>'; |
||
| 168 | if (!isset($ftrs['grouping_cell_type'])) { |
||
| 169 | $ftrs['grouping_cell_type'] = 'row'; |
||
| 170 | } |
||
| 171 | switch ($ftrs['grouping_cell_type']) { |
||
| 172 | case 'row': |
||
| 173 | $sReturn .= $tbl['Def']; |
||
| 174 | break; |
||
| 175 | case 'tab': |
||
| 176 | if (!isset($ftrs['noGlobalTab'])) { |
||
| 177 | $sReturn .= '<div class="tabber" id="tab">'; |
||
| 178 | } |
||
| 179 | break; |
||
| 180 | } |
||
| 181 | $iTableColumns = 0; |
||
| 182 | $remebered_value = -1; |
||
| 183 | $remindGroupValue = null; |
||
| 184 | $color_no = null; |
||
| 185 | if (!isset($ftrs['headers_breaked'])) { |
||
| 186 | $ftrs['headers_breaked'] = true; |
||
| 187 | } |
||
| 188 | for ($rCntr = 0; $rCntr < $rows; $rCntr++) { |
||
| 189 | if ($rCntr == 0) { |
||
| 190 | $header = array_diff_key($aElements[$rCntr], $hdClmns); |
||
| 191 | $iTableColumns = count($header); |
||
| 192 | if (isset($ftrs['computed_columns'])) { |
||
| 193 | $iTableColumns += count($ftrs['computed_columns']); |
||
| 194 | } |
||
| 195 | if (isset($ftrs['actions'])) { |
||
| 196 | $iTableColumns += 1; |
||
| 197 | } |
||
| 198 | if (isset($ftrs['grouping_cell'])) { |
||
| 199 | $iTableColumns -= 1; |
||
| 200 | } |
||
| 201 | $tbl['Head'] = '<thead>'; |
||
| 202 | if ($ftrs['grouping_cell_type'] == 'row') { |
||
| 203 | $sReturn .= $tbl['Head']; |
||
| 204 | } |
||
| 205 | View Code Duplication | if (isset($iStartingPageRecord)) { |
|
| 206 | $pgn = $this->setPagination($ftrs['limits'][0], $ftrs['limits'][1], $ftrs['limits'][2], $bKpFlPge); |
||
| 207 | $sReturn .= $this->setStringIntoTag($this->setStringIntoTag($pgn, 'th', [ |
||
| 208 | 'colspan' => $iTableColumns |
||
| 209 | ]), 'tr'); |
||
| 210 | } |
||
| 211 | $tbl['Header'] = '<tr>'; |
||
| 212 | if (isset($ftrs['grouping_cell'])) { // Grouping columns |
||
| 213 | $header = array_diff_key($header, [$ftrs['grouping_cell'] => '']); |
||
| 214 | } |
||
| 215 | if (isset($ftrs['actions'])) { // Action column |
||
| 216 | $tbl['Header'] .= '<th> </th>'; |
||
| 217 | } |
||
| 218 | if (isset($ftrs['RowStyle'])) { //Exclude style columns from displaying |
||
| 219 | $tmpClmns = $this->setArrayValuesAsKey([$ftrs['RowStyle']]); |
||
| 220 | $header = array_diff_key($header, $tmpClmns); |
||
| 221 | $hdClmns = array_merge($hdClmns, $tmpClmns); |
||
| 222 | unset($tmpClmns); |
||
| 223 | } |
||
| 224 | $tbl['Header'] .= $this->setTableHeader($header, $ftrs['headers_breaked']); // Regular columns |
||
| 225 | if (isset($ftrs['computed_columns'])) { // Computed columns |
||
| 226 | $tbl['Header'] .= $this->setTableHeader($ftrs['computed_columns'], $ftrs['headers_breaked']); |
||
| 227 | } |
||
| 228 | $tbl['Header'] .= '</tr></thead><tbody>'; |
||
| 229 | if ($ftrs['grouping_cell_type'] == 'row') { |
||
| 230 | $sReturn .= $tbl['Header']; |
||
| 231 | } |
||
| 232 | } |
||
| 233 | $row_current = array_diff_key($aElements[$rCntr], $hdClmns); |
||
| 234 | if (isset($ftrs['row_colored_alternated'])) { |
||
| 235 | if ($ftrs['row_colored_alternated'][0] == '#') { |
||
| 236 | $color_column_value = $rCntr; |
||
| 237 | } else { |
||
| 238 | $color_column_value = $row_current[$ftrs['row_colored_alternated'][0]]; |
||
| 239 | } |
||
| 240 | if ($remebered_value != $color_column_value) { |
||
| 241 | if (isset($color_no)) { |
||
| 242 | $color_no = 1; |
||
| 243 | } else { |
||
| 244 | $color_no = 2; |
||
| 245 | } |
||
| 246 | $remebered_value = $color_column_value; |
||
| 247 | } |
||
| 248 | $color = ' style="background-color: ' . $ftrs['row_colored_alternated'][$color_no] . ';"'; |
||
| 249 | } else { |
||
| 250 | if (isset($ftrs['RowStyle'])) { |
||
| 251 | $color = ' style="' . $aElements[$rCntr][$ftrs['RowStyle']] . '"'; |
||
| 252 | } else { |
||
| 253 | $color = ''; |
||
| 254 | } |
||
| 255 | } |
||
| 256 | $tbl['tr_Color'] = '<tr' . $color . '>'; |
||
| 257 | // Grouping column |
||
| 258 | if (isset($ftrs['grouping_cell'])) { |
||
| 259 | foreach ($aElements[$rCntr] as $key => $value) { |
||
| 260 | if (($ftrs['grouping_cell'] == $key) && ($remindGroupValue != $value)) { |
||
| 261 | switch ($ftrs['grouping_cell_type']) { |
||
| 262 | case 'row': |
||
| 263 | $sReturn .= $tbl['tr_Color'] . '<td ' . 'colspan="' . $iTableColumns . '">' |
||
| 264 | . $this->setStringIntoTag($value, 'div', ['class' => 'rowGroup rounded']) |
||
| 265 | . '</td></tr>'; |
||
| 266 | break; |
||
| 267 | case 'tab': |
||
| 268 | if (is_null($remindGroupValue)) { |
||
| 269 | if (isset($ftrs['showGroupingCounter'])) { |
||
| 270 | $groupCounter = 0; |
||
| 271 | } |
||
| 272 | } else { |
||
| 273 | $sReturn .= '</tbody></table>'; |
||
| 274 | if (isset($ftrs['showGroupingCounter'])) { |
||
| 275 | $sReturn .= $this->updateDivTitleName($remindGroupValue, $groupCounter); |
||
| 276 | $groupCounter = 0; |
||
| 277 | } |
||
| 278 | $sReturn .= '</div>'; |
||
| 279 | } |
||
| 280 | $sReturn .= '<div class="tabbertab'; |
||
| 281 | if (isset($ftrs['grouping_default_tab'])) { |
||
| 282 | $sReturn .= ($ftrs['grouping_default_tab'] == $value ? ' tabbertabdefault' : ''); |
||
| 283 | } |
||
| 284 | $sReturn .= '" id="tab_' . $this->cleanStringForId($value) . '" ' |
||
| 285 | . 'title="' . $value . '">' |
||
| 286 | . $tbl['Def'] . $tbl['Head'] . $tbl['Header']; |
||
| 287 | break; |
||
| 288 | } |
||
| 289 | $remindGroupValue = $value; |
||
| 290 | } |
||
| 291 | } |
||
| 292 | } |
||
| 293 | if (isset($ftrs['grouping_cell'])) { |
||
| 294 | if ($ftrs['grouping_cell_type'] == 'tab') { |
||
| 295 | if (isset($ftrs['showGroupingCounter'])) { |
||
| 296 | $groupCounter++; |
||
| 297 | } |
||
| 298 | } |
||
| 299 | } |
||
| 300 | $sReturn .= $tbl['tr_Color']; |
||
| 301 | // Action column |
||
| 302 | if (isset($ftrs['actions'])) { |
||
| 303 | $sReturn .= '<td style="white-space:nowrap;">'; |
||
| 304 | $action_argument = 0; |
||
| 305 | if (isset($ftrs['actions']['key'])) { |
||
| 306 | $action_key = $ftrs['actions']['key']; |
||
| 307 | } else { |
||
| 308 | $action_key = 'view'; |
||
| 309 | } |
||
| 310 | if (isset($ftrs['action_prefix'])) { |
||
| 311 | $actPrfx = $ftrs['action_prefix'] . '&'; |
||
| 312 | $action_key = 'view2'; |
||
| 313 | } else { |
||
| 314 | $actPrfx = ''; |
||
| 315 | } |
||
| 316 | foreach ($ftrs['actions'] as $key => $value) { |
||
| 317 | if ($action_argument != 0) { |
||
| 318 | $sReturn .= ' '; |
||
| 319 | } |
||
| 320 | switch ($key) { |
||
| 321 | case 'checkbox': |
||
| 322 | $checkboxName = $value . '[]'; |
||
| 323 | $checkboxNameS = $value; |
||
| 324 | $sReturn .= ' <input type="checkbox" name="' . $checkboxName |
||
| 325 | . '" id="n' . $aElements[$rCntr][$value] |
||
| 326 | . '" value="' . $aElements[$rCntr][$value] . '" '; |
||
| 327 | if (isset($_REQUEST[$checkboxNameS])) { |
||
| 328 | if (is_array($_REQUEST[$checkboxNameS])) { |
||
| 329 | if (in_array($aElements[$rCntr][$value], $_REQUEST[$checkboxNameS])) { |
||
| 330 | $sReturn .= 'checked="checked" '; |
||
| 331 | } |
||
| 332 | } else { |
||
| 333 | if ($aElements[$rCntr][$value] == $_REQUEST[$checkboxNameS]) { |
||
| 334 | $sReturn .= 'checked="checked" '; |
||
| 335 | } |
||
| 336 | } |
||
| 337 | } |
||
| 338 | if (strpos($_REQUEST['view'], 'multiEdit') !== false) { |
||
| 339 | $sReturn .= 'disabled="disabled" '; |
||
| 340 | } |
||
| 341 | $sReturn .= '/>'; |
||
| 342 | break; |
||
| 343 | case 'checkbox_inlineEdit': |
||
| 344 | $checkboxName = $value . '[]'; |
||
| 345 | $checkboxNameS = $value; |
||
| 346 | $sReturn .= ' <input type="checkbox" name="' . $checkboxName |
||
| 347 | . '" id="n' . $aElements[$rCntr][$value] . '" value="' |
||
| 348 | . $aElements[$rCntr][$value] . '"/>'; |
||
| 349 | break; |
||
| 350 | case 'edit': |
||
| 351 | $edt = ''; |
||
| 352 | if (isset($ftrs['NoAjaxEditing'])) { |
||
| 353 | $edt .= $_SERVER['PHP_SELF'] . '?' . $actPrfx |
||
| 354 | . $action_key . '=' . $value[0] . '&'; |
||
| 355 | $iActArgs = count($value[1]); |
||
| 356 | for ($cntr2 = 0; $cntr2 < $iActArgs; $cntr2++) { |
||
| 357 | $edt .= $value[1][$cntr2] . '=' . $aElements[$rCntr][$value[1][$cntr2]]; |
||
| 358 | } |
||
| 359 | $sReturn .= '<a href="' . $edt . '"><i class="fa fa-pencil"> </i></a>'; |
||
| 360 | View Code Duplication | } else { |
|
| 361 | $edt .= 'javascript:loadAE(\'' . $_SERVER['PHP_SELF'] . '?' |
||
| 362 | . $actPrfx . $action_key . '=' . $value[0] . '&'; |
||
| 363 | $iActArgs = count($value[1]); |
||
| 364 | for ($cntr2 = 0; $cntr2 < $iActArgs; $cntr2++) { |
||
| 365 | $edt .= $value[1][$cntr2] . '=' . $aElements[$rCntr][$value[1][$cntr2]]; |
||
| 366 | } |
||
| 367 | $edt .= '\');'; |
||
| 368 | $sReturn .= '<a href="#" onclick="' . $edt . '">' |
||
| 369 | . '<i class="fa fa-pencil"> </i></a>'; |
||
| 370 | } |
||
| 371 | break; |
||
| 372 | case 'list2': |
||
| 373 | $edt = ''; |
||
| 374 | if (isset($ftrs['NoAjaxEditing'])) { |
||
| 375 | $sReturn .= '<a href="?' . $actPrfx . $action_key . '=' . $value[0] . '&'; |
||
| 376 | $iActArgs = count($value[1]); |
||
| 377 | for ($cntr2 = 0; $cntr2 < $iActArgs; $cntr2++) { |
||
| 378 | $sReturn .= $value[1][$cntr2] . '=' . $aElements[$rCntr][$value[1][$cntr2]]; |
||
| 379 | } |
||
| 380 | $sReturn .= '"><i class="fa fa-list"> </i></a>'; |
||
| 381 | View Code Duplication | } else { |
|
| 382 | $edt .= 'javascript:loadAE(\'' . $_SERVER['PHP_SELF'] . '?' |
||
| 383 | . $actPrfx . $action_key . '=' . $value[0] . '&'; |
||
| 384 | $iActArgs = count($value[1]); |
||
| 385 | for ($cntr2 = 0; $cntr2 < $iActArgs; $cntr2++) { |
||
| 386 | $edt .= $value[1][$cntr2] . '=' . $aElements[$rCntr][$value[1][$cntr2]]; |
||
| 387 | } |
||
| 388 | $edt .= '\');'; |
||
| 389 | $sReturn .= '<a href="#" onclick="' . $edt . '">' |
||
| 390 | . '<i class="fa fa-list"> </i></a>'; |
||
| 391 | } |
||
| 392 | break; |
||
| 393 | case 'delete': |
||
| 394 | $sReturn .= '<a href="javascript:setQuest(\'' . $value[0] . '\',\''; |
||
| 395 | $iActArgs = count($value[1]); |
||
| 396 | for ($cntr2 = 0; $cntr2 < $iActArgs; $cntr2++) { |
||
| 397 | $sReturn .= $value[1][$cntr2] . '=' . $aElements[$rCntr][$value[1][$cntr2]]; |
||
| 398 | } |
||
| 399 | $sReturn .= '\');"><i class="fa fa-times"> </i></a>'; |
||
| 400 | break; |
||
| 401 | } |
||
| 402 | $action_argument += 1; |
||
| 403 | } |
||
| 404 | $sReturn .= '</td>'; |
||
| 405 | } |
||
| 406 | // Regular columns |
||
| 407 | $sReturn .= $this->setTableCell($row_current, $ftrs); |
||
| 408 | // Computed columns |
||
| 409 | if (isset($ftrs['computed_columns'])) { |
||
| 410 | foreach ($ftrs['computed_columns'] as $key => $value) { |
||
| 411 | if ($value[0] == '%') { |
||
| 412 | $dec = $value[2] + 2; |
||
| 413 | } else { |
||
| 414 | $dec = $value[2]; |
||
| 415 | } |
||
| 416 | switch ($value[1]) { |
||
| 417 | case '/': |
||
| 418 | // next variable is only to avoid a long line |
||
| 419 | $shorter = [ |
||
| 420 | $aElements[$rCntr][$value[3]], |
||
| 421 | $aElements[$rCntr][$value[4]], |
||
| 422 | ]; |
||
| 423 | $aElements[$rCntr][$key] = $this->setDividedResult($shorter[0], $shorter[1], $dec); |
||
| 424 | break; |
||
| 425 | case '+': |
||
| 426 | // next variable is only to avoid a long line |
||
| 427 | $iTemp = $this->setArrayValuesAsKey([ |
||
| 428 | $value[0], |
||
| 429 | $value[1], |
||
| 430 | $value[2] |
||
| 431 | ]); |
||
| 432 | $aTemp = array_diff($value, $iTemp); |
||
| 433 | $aElements[$rCntr][$key] = 0; |
||
| 434 | foreach ($aTemp as $sValue) { |
||
| 435 | $aElements[$rCntr][$key] += $aElements[$rCntr][$sValue]; |
||
| 436 | } |
||
| 437 | break; |
||
| 438 | default: |
||
| 439 | $row_computed[$key] = ''; |
||
| 440 | break; |
||
| 441 | } |
||
| 442 | if ($value[0] == '%') { |
||
| 443 | $row_computed[$key] = ($aElements[$rCntr][$key] * 100); |
||
| 444 | $dec -= 2; |
||
| 445 | } else { |
||
| 446 | $row_computed[$key] = $aElements[$rCntr][$key]; |
||
| 447 | } |
||
| 448 | $decimals[$key] = $dec; |
||
| 449 | } |
||
| 450 | // displaying them |
||
| 451 | $sReturn .= $this->setTableCell($row_computed, ['decimals' => $decimals]); |
||
| 452 | } |
||
| 453 | $sReturn .= '</tr>'; |
||
| 454 | } |
||
| 455 | View Code Duplication | if (isset($iStartingPageRecord)) { |
|
| 456 | $pgn = $this->setPagination($ftrs['limits'][0], $ftrs['limits'][1], $ftrs['limits'][2]); |
||
| 457 | $sReturn .= '<tr>' . $this->setStringIntoTag($pgn, 'th', ['colspan' => $iTableColumns]) . '</tr>'; |
||
| 458 | } |
||
| 459 | $sReturn .= '</tbody></table>'; |
||
| 460 | if ($ftrs['grouping_cell_type'] == 'tab') { |
||
| 461 | if (isset($ftrs['showGroupingCounter'])) { |
||
| 462 | $sReturn .= $this->updateDivTitleName($remindGroupValue, $groupCounter); |
||
| 463 | } |
||
| 464 | $sReturn .= '</div><!-- from ' . $remindGroupValue . ' -->'; |
||
| 465 | if (!isset($ftrs['noGlobalTab'])) { |
||
| 466 | $sReturn .= '</div><!-- from global tab -->'; |
||
| 467 | } |
||
| 468 | } |
||
| 469 | if (isset($ftrs['actions']['checkbox'])) { |
||
| 470 | if (strpos($_REQUEST['view'], 'multiEdit') === false) { |
||
| 471 | $sReturn .= '<a href="#" onclick="javascript:checking(\'' . $checkboxFormId |
||
| 472 | . '\',\'' . $checkboxName . '\',true);">Check All</a> ' |
||
| 473 | . '<a href="#" onclick="javascript:checking(\'' . $checkboxFormId |
||
| 474 | . '\',\'' . $checkboxName . '\',false);">Uncheck All</a> ' |
||
| 475 | . '<input type="hidden" name="action" value="multiEdit_' . $checkboxNameS . '" />'; |
||
| 476 | View Code Duplication | if (isset($ftrs['hiddenInput'])) { |
|
| 477 | if (is_array($ftrs['hiddenInput'])) { |
||
| 478 | foreach ($ftrs['hiddenInput'] as $valueF) { |
||
| 479 | $sReturn .= '<input type="hidden" name="' . $valueF |
||
| 480 | . '" value="' . $_REQUEST[$valueF] . '" />'; |
||
| 481 | } |
||
| 482 | } else { |
||
| 483 | $sReturn .= '<input type="hidden" name="' . $ftrs['hiddenInput'] |
||
| 484 | . '" value="' . $_REQUEST[$ftrs['hiddenInput']] . '" />'; |
||
| 485 | } |
||
| 486 | } |
||
| 487 | $sReturn .= '<input style="margin: 0 3em 0 3em;" type="submit" ' . 'value="Edit selected" />'; |
||
| 488 | } |
||
| 489 | $sReturn .= '</form>'; |
||
| 490 | } |
||
| 491 | if (isset($ftrs['actions']['checkbox_inlineEdit'])) { |
||
| 492 | $sReturn .= '<a href="#" onclick="javascript:checking(\'' . $checkboxFormId |
||
| 493 | . '\',\'' . $checkboxName . '\',true);">Check All</a> ' |
||
| 494 | . '<a href="#" onclick="javascript:checking(\'' . $checkboxFormId |
||
| 495 | . '\',\'' . $checkboxName . '\',false);">Uncheck All</a> '; |
||
| 496 | if (isset($ftrs['visibleInput'])) { |
||
| 497 | $sReturn .= $ftrs['visibleInput']; |
||
| 498 | } |
||
| 499 | $sReturn .= '<input type="hidden" name="view" value="save_' . $checkboxNameS . '" />'; |
||
| 500 | View Code Duplication | if (isset($ftrs['hiddenInput'])) { |
|
| 501 | if (is_array($ftrs['hiddenInput'])) { |
||
| 502 | foreach ($ftrs['hiddenInput'] as $valueF) { |
||
| 503 | $sReturn .= '<input type="hidden" name="' . $valueF |
||
| 504 | . '" value="' . $_REQUEST[$valueF] . '" />'; |
||
| 505 | } |
||
| 506 | } else { |
||
| 507 | $sReturn .= '<input type="hidden" name="' . $ftrs['hiddenInput'] |
||
| 508 | . '" value="' . $_REQUEST[$ftrs['hiddenInput']] . '" />'; |
||
| 509 | } |
||
| 510 | } |
||
| 511 | $sReturn .= '<input style="margin: 0 3em 0 3em;" type="submit" value="Store the modification" />'; |
||
| 512 | $sReturn .= '</form>'; |
||
| 513 | } |
||
| 514 | return $sReturn; |
||
| 515 | } |
||
| 516 | |||
| 1034 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.