Просмотр исходного кода

reenable flexilbe extension facility

andre 2 лет назад
Родитель
Сommit
a55aed84df

+ 4 - 4
app/UI/Admin/ProductConfiguration/Pages/Sections/KerioSettings.php

@@ -63,6 +63,10 @@ class KerioSettings extends BoxSectionExtended implements AdminArea
         $loginLink->setDescription('description');
         $leftSection->addField($loginLink);
 
+        $field = new Switcher('outllok_connector');
+        $field->setDescription('description');
+        $leftSection->addField($field);
+
         return $leftSection;
     }
 
@@ -104,10 +108,6 @@ class KerioSettings extends BoxSectionExtended implements AdminArea
         $field->setDescription('description');
         $right->addField($field);
 
-        $field = new Switcher('outllok_connector');
-        $field->setDescription('description');
-        $right->addField($field);
-
         return $right;
     }
 }