You are here

public function SettingsForm::buildForm in Salesforce Suite 5.0.x

Same name in this branch
  1. 5.0.x src/Form/SettingsForm.php \Drupal\salesforce\Form\SettingsForm::buildForm()
  2. 5.0.x modules/salesforce_logger/src/Form/SettingsForm.php \Drupal\salesforce_logger\Form\SettingsForm::buildForm()
Same name and namespace in other branches
  1. 8.4 src/Form/SettingsForm.php \Drupal\salesforce\Form\SettingsForm::buildForm()
  2. 8.3 src/Form/SettingsForm.php \Drupal\salesforce\Form\SettingsForm::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/SettingsForm.php, line 78

Class

SettingsForm
Creates authorization form for Salesforce.

Namespace

Drupal\salesforce\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {

  // We're not actually doing anything with this, but may figure out
  // something that makes sense.
  $config = $this
    ->config('salesforce.settings');
  $definition = \Drupal::service('config.typed')
    ->getDefinition('salesforce.settings');
  $definition = $definition['mapping'];
  $form['use_latest'] = [
    '#title' => $this
      ->t($definition['use_latest']['label']),
    '#type' => 'checkbox',
    '#description' => $this
      ->t($definition['use_latest']['description']),
    '#default_value' => $config
      ->get('use_latest'),
  ];
  $versions = [];
  try {
    $versions = $this
      ->getVersionOptions();
  } catch (\Exception $e) {
    $href = new Url('salesforce.admin_config_salesforce');
    $this
      ->messenger()
      ->addError($this
      ->t('Error when connecting to Salesforce. Please <a href="@href">check your credentials</a> and try again: %message', [
      '@href' => $href
        ->toString(),
      '%message' => $e
        ->getMessage(),
    ]));
  }
  $form['short_term_cache_lifetime'] = [
    '#title' => $this
      ->t($definition['short_term_cache_lifetime']['label']),
    '#description' => $this
      ->t($definition['short_term_cache_lifetime']['description']),
    '#type' => 'number',
    '#default_value' => $config
      ->get('short_term_cache_lifetime'),
  ];
  $form['long_term_cache_lifetime'] = [
    '#title' => $this
      ->t($definition['long_term_cache_lifetime']['label']),
    '#description' => $this
      ->t($definition['long_term_cache_lifetime']['description']),
    '#type' => 'number',
    '#default_value' => $config
      ->get('short_term_cache_lifetime'),
  ];
  $form['rest_api_version'] = [
    '#title' => $this
      ->t($definition['rest_api_version']['label']),
    '#description' => $this
      ->t($definition['rest_api_version']['description']),
    '#type' => 'select',
    '#options' => $versions,
    '#tree' => TRUE,
    '#default_value' => $config
      ->get('rest_api_version')['version'],
    '#states' => [
      'visible' => [
        ':input[name="use_latest"]' => [
          'checked' => FALSE,
        ],
      ],
    ],
  ];
  if (\Drupal::moduleHandler()
    ->moduleExists('salesforce_push')) {
    $form['global_push_limit'] = [
      '#title' => $this
        ->t($definition['global_push_limit']['label']),
      '#type' => 'number',
      '#description' => $this
        ->t($definition['global_push_limit']['description']),
      '#required' => TRUE,
      '#default_value' => $config
        ->get('global_push_limit'),
      '#min' => 0,
    ];
  }
  if (\Drupal::moduleHandler()
    ->moduleExists('salesforce_pull')) {
    $form['pull_max_queue_size'] = [
      '#title' => $this
        ->t($definition['pull_max_queue_size']['label']),
      '#type' => 'number',
      '#description' => $this
        ->t($definition['pull_max_queue_size']['description']),
      '#required' => TRUE,
      '#default_value' => $config
        ->get('pull_max_queue_size'),
      '#min' => 0,
    ];
  }
  if (\Drupal::moduleHandler()
    ->moduleExists('salesforce_mapping')) {
    $form['limit_mapped_object_revisions'] = [
      '#title' => $this
        ->t($definition['limit_mapped_object_revisions']['label']),
      '#description' => $this
        ->t($definition['limit_mapped_object_revisions']['description']),
      '#type' => 'number',
      '#required' => TRUE,
      '#default_value' => $config
        ->get('limit_mapped_object_revisions'),
      '#min' => 0,
    ];
    $form['show_all_objects'] = [
      '#title' => $this
        ->t($definition['show_all_objects']['label']),
      '#description' => $this
        ->t($definition['show_all_objects']['description']),
      '#type' => 'checkbox',
      '#default_value' => $config
        ->get('show_all_objects'),
    ];
  }
  if (\Drupal::moduleHandler()
    ->moduleExists('salesforce_push') || \Drupal::moduleHandler()
    ->moduleExists('salesforce_pull')) {
    $form['standalone'] = [
      '#title' => $this
        ->t($definition['standalone']['label']),
      '#description' => $this
        ->t($definition['standalone']['description']),
      '#type' => 'checkbox',
      '#default_value' => $config
        ->get('standalone'),
    ];
    if (\Drupal::moduleHandler()
      ->moduleExists('salesforce_push')) {
      $standalone_push_url = Url::fromRoute('salesforce_push.endpoint', [
        'key' => \Drupal::state()
          ->get('system.cron_key'),
      ], [
        'absolute' => TRUE,
      ]);
      $form['standalone_push_url'] = [
        '#type' => 'item',
        '#title' => $this
          ->t('Standalone Push URL'),
        '#markup' => $this
          ->t('<a href="@url">@url</a>', [
          '@url' => $standalone_push_url
            ->toString(),
        ]),
        '#states' => [
          'visible' => [
            ':input#edit-standalone' => [
              'checked' => TRUE,
            ],
          ],
        ],
      ];
    }
    if (\Drupal::moduleHandler()
      ->moduleExists('salesforce_pull')) {
      $standalone_pull_url = Url::fromRoute('salesforce_pull.endpoint', [
        'key' => \Drupal::state()
          ->get('system.cron_key'),
      ], [
        'absolute' => TRUE,
      ]);
      $form['standalone_pull_url'] = [
        '#type' => 'item',
        '#title' => $this
          ->t('Standalone Pull URL'),
        '#markup' => $this
          ->t('<a href="@url">@url</a>', [
          '@url' => $standalone_pull_url
            ->toString(),
        ]),
        '#states' => [
          'visible' => [
            ':input#edit-standalone' => [
              'checked' => TRUE,
            ],
          ],
        ],
      ];
    }
  }
  $form = parent::buildForm($form, $form_state);
  $form['creds']['actions'] = $form['actions'];
  unset($form['actions']);
  return $form;
}