fix: [genericElements:formInfo] Removed unused portion of code

pull/151/head
Sami Mokaddem 2023-03-30 16:14:15 +02:00
parent 5f1c99cd53
commit 5cb65f8fc1
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
2 changed files with 2 additions and 12 deletions

View File

@ -1,5 +1,4 @@
<?php
$modelForForm = 'Individuals';
echo $this->element('genericElements/Form/genericForm', array(
'data' => array(
'description' => __('Individuals are natural persons. They are meant to describe the basic information about an individual that may or may not be a user of this community. Users in genral require an individual object to identify the person behind them - however, no user account is required to store information about an individual. Individuals can have affiliations to organisations and broods as well as cryptographic keys, using which their messages can be verified and which can be used to securely contact them.'),

View File

@ -2,19 +2,10 @@
$seed = mt_rand();
if (!is_array($fieldDesc)) {
$fieldDesc = array('info' => $fieldDesc);
$default = 'info';
} else {
if (!empty($field['options'])) {
if (isset($this->request->data[$modelForForm][$field['field']])) {
$default = $this->request->data[$modelForForm][$field['field']];
} else {
reset($field['options']);
$default = key($field['options']);
}
} else {
if (empty($field['options'])) {
reset($fieldDesc);
$fieldDesc = array('info' => key($fieldDesc));
$default = 'info';
}
}
$popoverID = sprintf("%sInfoPopover%s", h($field['field']), $seed);
@ -39,7 +30,7 @@
.text('<?php echo h(\Cake\Utility\Inflector::humanize($field['field'])); ?>')
)
.append(
$('<span>').text(": <?= h($fieldDesc["info"]) ?>")
$('<span>').text(": <?= h($fieldDesc["info"] ?? '') ?>")
);
// var tempSelector = '#<?php echo h($modelForForm . \Cake\Utility\Inflector::camelize($field['field'])); ?>';
// if ($(tempSelector)[0].nodeName === "SELECT" && Object.keys(fieldDesc).length > 1) {