You are here

public function SimpleFbConnectSettingsForm::buildForm in Simple FB Connect 8.3

Same name and namespace in other branches
  1. 8.2 src/Form/SimpleFbConnectSettingsForm.php \Drupal\simple_fb_connect\Form\SimpleFbConnectSettingsForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfigFormBase::buildForm

File

src/Form/SimpleFbConnectSettingsForm.php, line 63

Class

SimpleFbConnectSettingsForm
Defines a form that configures Simple FB Connect settings.

Namespace

Drupal\simple_fb_connect\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $simple_fb_config = $this
    ->config('simple_fb_connect.settings');
  $form['fb_settings'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Facebook App settings'),
    '#open' => TRUE,
    '#description' => $this
      ->t('You need to first create a Facebook App at <a href="@facebook-dev">@facebook-dev</a>', [
      '@facebook-dev' => 'https://developers.facebook.com/apps',
    ]),
  ];
  $form['fb_settings']['app_id'] = [
    '#type' => 'textfield',
    '#required' => TRUE,
    '#title' => $this
      ->t('Application ID'),
    '#default_value' => $simple_fb_config
      ->get('app_id'),
    '#description' => $this
      ->t('Copy the App ID of your Facebook App here. This value can be found from your App Dashboard.'),
  ];
  $form['fb_settings']['app_secret'] = [
    '#type' => 'textfield',
    '#required' => TRUE,
    '#title' => $this
      ->t('App Secret'),
    '#default_value' => $simple_fb_config
      ->get('app_secret'),
    '#description' => $this
      ->t('Copy the App Secret of your Facebook App here. This value can be found from your App Dashboard.'),
  ];
  $form['fb_settings']['api_version'] = [
    '#type' => 'textfield',
    '#required' => TRUE,
    '#title' => $this
      ->t('API Version'),
    '#default_value' => $simple_fb_config
      ->get('api_version'),
    '#description' => $this
      ->t('Copy the API Version of your Facebook App here. This value can be found from your App Dashboard. More information on API versions can be found at <a href="@facebook-changelog">Facebook Platform Changelog</a>.', [
      '@facebook-changelog' => 'https://developers.facebook.com/docs/apps/changelog',
    ]),
  ];
  $form['fb_settings']['oauth_redirect_url'] = [
    '#type' => 'textfield',
    '#disabled' => TRUE,
    '#title' => $this
      ->t('Valid OAuth redirect URIs'),
    '#description' => $this
      ->t('Copy this value to <em>Valid OAuth redirect URIs</em> field of your Facebook App settings.'),
    '#default_value' => $GLOBALS['base_url'] . '/user/simple-fb-connect/return',
  ];
  $form['fb_settings']['app_domains'] = [
    '#type' => 'textfield',
    '#disabled' => TRUE,
    '#title' => $this
      ->t('App Domains'),
    '#description' => $this
      ->t('Copy this value to <em>App Domains</em> field of your Facebook App settings.'),
    '#default_value' => $this->requestContext
      ->getHost(),
  ];
  $form['fb_settings']['site_url'] = [
    '#type' => 'textfield',
    '#disabled' => TRUE,
    '#title' => $this
      ->t('Site URL'),
    '#description' => $this
      ->t('Copy this value to <em>Site URL</em> field of your Facebook App settings.'),
    '#default_value' => $GLOBALS['base_url'],
  ];
  $form['module_settings'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Simple FB Connect configurations'),
    '#open' => TRUE,
    '#description' => $this
      ->t('These settings allow you to configure how Simple FB Connect module behaves on your Drupal site'),
  ];
  $form['module_settings']['post_login_path'] = [
    '#type' => 'textfield',
    '#required' => TRUE,
    '#title' => $this
      ->t('Post login path'),
    '#description' => $this
      ->t('Drupal path where the user should be redirected after successful login. Use <em>&lt;front&gt;</em> to redirect user to your front page.'),
    '#default_value' => $simple_fb_config
      ->get('post_login_path'),
  ];
  $form['module_settings']['redirect_user_form'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Redirect new users to Drupal user form'),
    '#description' => $this
      ->t('If you check this, new users are redirected to Drupal user form after the user is created. This is useful if you want to encourage users to fill in additional user fields.'),
    '#default_value' => $simple_fb_config
      ->get('redirect_user_form'),
  ];
  $form['module_settings']['disable_admin_login'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Disable FB login for administrator'),
    '#description' => $this
      ->t('Disabling FB login for administrator (<em>user 1</em>) can help protect your site if a security vulnerability is ever discovered in Facebook PHP SDK or this module.'),
    '#default_value' => $simple_fb_config
      ->get('disable_admin_login'),
  ];

  // Option to disable FB login for specific roles.
  $roles = user_roles();
  $options = [];
  foreach ($roles as $key => $role_object) {
    if ($key != 'anonymous' && $key != 'authenticated') {
      $options[$key] = Html::escape($role_object
        ->get('label'));
    }
  }
  $form['module_settings']['disabled_roles'] = [
    '#type' => 'checkboxes',
    '#title' => $this
      ->t('Disable FB login for the following roles'),
    '#options' => $options,
    '#default_value' => $simple_fb_config
      ->get('disabled_roles'),
  ];
  if (empty($roles)) {
    $form['module_settings']['disabled_roles']['#description'] = $this
      ->t('No roles found.');
  }
  return parent::buildForm($form, $form_state);
}