add checkbox authorize adobecc plugin in admin / setup

This commit is contained in:
aina-esokia
2018-07-13 12:06:59 +04:00
parent 1ea18e1597
commit e836c99b54
2 changed files with 5 additions and 0 deletions

View File

@@ -142,6 +142,7 @@ class RegistryFormManipulator
'api-enabled' => true,
'navigator-enabled' => true,
'office-enabled' => true,
'adobe_cc-enabled' => true,
],
'webservices' => [
'google-charts-enabled' => true,

View File

@@ -31,6 +31,10 @@ class APIClientsFormType extends AbstractType
$builder->add('office-enabled', 'checkbox', [
'label' => 'Authorize Microsoft Office Plugin to connect.',
]);
$builder->add('adobe_cc-enabled', 'checkbox', [
'label' => 'Authorize Adobe cc Plugin to connect.',
]);
}
public function getName()