|
@@ 537-539 (lines=3) @@
|
| 534 |
|
if (isset($features['readonly']) && in_array($fieldName, $features['readonly'])) { |
| 535 |
|
$iar = ['readonly' => 'readonly', 'class' => 'input_readonly']; |
| 536 |
|
} |
| 537 |
|
if (isset($features['disabled']) && in_array($fieldName, $features['disabled'])) { |
| 538 |
|
$iar = ['disabled' => 'disabled']; |
| 539 |
|
} |
| 540 |
|
if (isset($features['include_null']) && in_array($fieldName, $features['include_null'])) { |
| 541 |
|
$iar = ['include_null']; |
| 542 |
|
} |
|
@@ 540-542 (lines=3) @@
|
| 537 |
|
if (isset($features['disabled']) && in_array($fieldName, $features['disabled'])) { |
| 538 |
|
$iar = ['disabled' => 'disabled']; |
| 539 |
|
} |
| 540 |
|
if (isset($features['include_null']) && in_array($fieldName, $features['include_null'])) { |
| 541 |
|
$iar = ['include_null']; |
| 542 |
|
} |
| 543 |
|
return $iar; |
| 544 |
|
} |
| 545 |
|
|