You are here

public function SimpleFbConnectSettingsForm::buildForm in Simple FB Connect 8.2

Same name and namespace in other branches
  1. 8.3 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 38
Contains \Drupal\simple_fb_connect\Form\SimpleFbConnectSettingsForm.

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'] = array(
    '#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>', array(
      '@facebook-dev' => 'https://developers.facebook.com/apps',
    )),
  );
  $form['fb_settings']['app_id'] = array(
    '#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'),
  );
  $form['fb_settings']['app_secret'] = array(
    '#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'),
  );
  $form['fb_settings']['site_url'] = array(
    '#type' => 'textfield',
    '#disabled' => TRUE,
    '#title' => $this
      ->t('Site URL'),
    '#description' => $this
      ->t('Copy this value to <em>Site URL</em> and <em>Mobile Site URL</em> of your Facebook App settings.'),
    '#default_value' => $GLOBALS['base_url'],
  );
  $form['module_settings'] = array(
    '#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'] = array(
    '#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'] = array(
    '#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'] = array(
    '#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 = array();
  foreach ($roles as $key => $role_object) {
    if ($key != 'anonymous' && $key != 'authenticated') {
      $options[$key] = SafeMarkup::checkPlain($role_object
        ->get('label'));
    }
  }
  $form['module_settings']['disabled_roles'] = array(
    '#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'] = t('No roles found.');
  }
  return parent::buildForm($form, $form_state);
}