setName('config:system:delete') ->setDescription('Delete a system config value') ->addArgument( 'name', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'Name of the config to delete, specify multiple for array parameter' ) ->addOption( 'error-if-not-exists', null, InputOption::VALUE_NONE, 'Checks whether the config exists before deleting it' ) ; } protected function execute(InputInterface $input, OutputInterface $output): int { $configNames = $input->getArgument('name'); $configName = $configNames[0]; if (count($configNames) > 1) { if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->systemConfig->getKeys())) { $output->writeln('System config ' . implode(' => ', $configNames) . ' could not be deleted because it did not exist'); return 1; } $value = $this->systemConfig->getValue($configName); try { $value = $this->removeSubValue(array_slice($configNames, 1), $value, $input->hasParameterOption('--error-if-not-exists')); } catch (\UnexpectedValueException $e) { $output->writeln('System config ' . implode(' => ', $configNames) . ' could not be deleted because it did not exist'); return 1; } $this->systemConfig->setValue($configName, $value); $output->writeln('System config value ' . implode(' => ', $configNames) . ' deleted'); return 0; } else { if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->systemConfig->getKeys())) { $output->writeln('System config ' . $configName . ' could not be deleted because it did not exist'); return 1; } $this->systemConfig->deleteValue($configName); $output->writeln('System config value ' . $configName . ' deleted'); return 0; } } protected function removeSubValue($keys, $currentValue, $throwError) { $nextKey = array_shift($keys); if (is_array($currentValue)) { if (isset($currentValue[$nextKey])) { if (empty($keys)) { unset($currentValue[$nextKey]); } else { $currentValue[$nextKey] = $this->removeSubValue($keys, $currentValue[$nextKey], $throwError); } } elseif ($throwError) { throw new \UnexpectedValueException('Config parameter does not exist'); } } elseif ($throwError) { throw new \UnexpectedValueException('Config parameter does not exist'); } return $currentValue; } } value='dependabot/maven/org.eclipse.jgit-org.eclipse.jgit-3.5.3.201412180710-r'>dependabot/maven/org.eclipse.jgit-org.eclipse.jgit-3.5.3.201412180710-r Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/layout/layout-customlayout.asciidoc
blob: d091ea085364c658634f3a671b868bf5f15ba8f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102