Skip to content
Snippets Groups Projects
Unverified Commit 5c47458c authored by Kirill Roskolii's avatar Kirill Roskolii
Browse files

220: Fix options validation

parent 17ff6a56
No related branches found
No related tags found
No related merge requests found
...@@ -84,9 +84,7 @@ class DomStrReplace extends DomProcessBase { ...@@ -84,9 +84,7 @@ class DomStrReplace extends DomProcessBase {
'attribute' => [ 'attribute' => [
'attribute_options' => NULL, 'attribute_options' => NULL,
], ],
'element' => [ 'element' => []
]
], ],
'search' => NULL, 'search' => NULL,
'replace' => NULL, 'replace' => NULL,
...@@ -104,7 +102,7 @@ class DomStrReplace extends DomProcessBase { ...@@ -104,7 +102,7 @@ class DomStrReplace extends DomProcessBase {
sprintf( sprintf(
'Configuration option "%s" only accepts the following values: %s.', 'Configuration option "%s" only accepts the following values: %s.',
$option_name, $option_name,
implode(', ', $possible_values) implode(', ', array_keys($possible_values))
) )
); );
} }
...@@ -118,7 +116,7 @@ class DomStrReplace extends DomProcessBase { ...@@ -118,7 +116,7 @@ class DomStrReplace extends DomProcessBase {
"Configuration option '$option_name' is required for mode '$mode'." "Configuration option '$option_name' is required for mode '$mode'."
); );
} }
if (is_null($possible_values) && !in_array($this->configuration[$option_name], $possible_values)) { if (!is_null($possible_values) && !in_array($this->configuration[$option_name], $possible_values)) {
throw new InvalidPluginDefinitionException( throw new InvalidPluginDefinitionException(
$this->getPluginId(), $this->getPluginId(),
sprintf( sprintf(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment