diff --git a/src/FormBit/varbase_auth.formbit.php b/src/FormBit/varbase_auth.formbit.php index 5dd09f4d948b7bb5e4703f4ebfef100ad54314c7..0a58736f695fcbe9e9b12ef50bc139ef12d89393 100644 --- a/src/FormBit/varbase_auth.formbit.php +++ b/src/FormBit/varbase_auth.formbit.php @@ -14,13 +14,13 @@ use Drupal\Core\Form\FormStateInterface; * Array of config names, and list of values. */ function varbase_auth_get_editable_config_names() { - $editable_cofnigs = [ - 'simple.settings' => [ + $editable_configs = [ + 'varbase_auth' => [ 'social_auth_type' => ['social_auth_google'], ], ]; - return $editable_cofnigs; + return $editable_configs; } /** @@ -56,12 +56,7 @@ function varbase_auth_build_formbit(array &$formbit, FormStateInterface &$form_s * Editable cofnig values. */ function varbase_auth_submit_formbit(array $editable_config_values) { - $configFactory = \Drupal::configFactory()->getEditable('simple.settings'); - $configFactory->set('social_auth_type', $editable_config_values['simple.settings']['social_auth_type']); - $configFactory->save(TRUE); - - // From the Config and enable the modules. - $auth_modules = $configFactory->get('social_auth_type'); + $auth_modules = $editable_config_values['varbase_auth']['social_auth_type']; if (isset($auth_modules) && is_array($auth_modules) && count($auth_modules) > 0) {