Lines Matching refs:newEntry
173 $newEntry = $oldEntry;
179 $newEntry['config'] = $this->data['cols'][$column->getColref()]['config'];
180 $newEntry['label'] = $this->data['cols'][$column->getColref()]['label'];
181 $newEntry['ismulti'] = $this->data['cols'][$column->getColref()]['ismulti'] ?? 0;
182 $newEntry['class'] = $this->data['cols'][$column->getColref()]['class'];
187 if (array_diff_assoc($oldEntry, $newEntry)) {
188 $ok = $this->sqlite->saveRecord('types', $newEntry);
192 if ($oldEntry['ismulti'] == false && $newEntry['ismulti'] == '1') {
266 $newEntry = [];
267 $newEntry['config'] = $column['config'] ?? '{}';
268 $newEntry['label'] = $column['label'];
269 $newEntry['ismulti'] = $column['ismulti'] ?? 0;
270 $newEntry['class'] = $column['class'];
275 if (!$newEntry['label']) continue;
283 $ok = $this->sqlite->saveRecord('types', $newEntry);