Fix option to add field paths or rule paths to both module or plugin external forms.

This commit is contained in:
2022-02-04 19:21:10 +02:00
parent 2ce36117d4
commit 8219d5ed45
8 changed files with 292 additions and 237 deletions

View File

@ -9473,7 +9473,7 @@ class Get
{
if (ComponentbuilderHelper::checkString($add_rule_path['path']))
{
$module->add_rule_path[$unique][] = $add_rule_path['path'];
$module->add_rule_path[$unique] = $add_rule_path['path'];
}
}
}
@ -9485,7 +9485,7 @@ class Get
{
if (ComponentbuilderHelper::checkString($add_field_path['path']))
{
$module->add_field_path[$unique][] = $add_field_path['path'];
$module->add_field_path[$unique] = $add_field_path['path'];
}
}
}
@ -10416,7 +10416,7 @@ class Get
{
if (ComponentbuilderHelper::checkString($add_rule_path['path']))
{
$plugin->add_rule_path[$unique][] = $add_rule_path['path'];
$plugin->add_rule_path[$unique] = $add_rule_path['path'];
}
}
}
@ -10428,7 +10428,7 @@ class Get
{
if (ComponentbuilderHelper::checkString($add_field_path['path']))
{
$plugin->add_field_path[$unique][] = $add_field_path['path'];
$plugin->add_field_path[$unique] = $add_field_path['path'];
}
}
}