You are here

public function HotjarAdminSettingsForm::buildForm in Hotjar 8

Same name and namespace in other branches
  1. 8.2 src/Form/HotjarAdminSettingsForm.php \Drupal\hotjar\Form\HotjarAdminSettingsForm::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/HotjarAdminSettingsForm.php, line 72

Class

HotjarAdminSettingsForm
Configure Hotjar settings for this site.

Namespace

Drupal\hotjar\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['general'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('General settings'),
    '#open' => TRUE,
  ];
  $form['general']['hotjar_account'] = [
    '#default_value' => $this->hotjarSettings
      ->getSetting('account'),
    '#description' => $this
      ->t('Your Hotjar ID can be found in your tracking code on the line <code>h._hjSettings={hjid:<b>12345</b>,hjsv:5};</code> where <code><b>12345</b></code> is your Hotjar ID'),
    '#maxlength' => 20,
    '#required' => TRUE,
    '#size' => 15,
    '#title' => $this
      ->t('Hotjar ID'),
    '#type' => 'textfield',
  ];
  $form['general']['hotjar_snippet_version'] = [
    '#default_value' => $this->hotjarSettings
      ->getSetting('snippet_version'),
    '#description' => $this
      ->t('Your Hotjar snippet version is near your Hotjar ID<code>h._hjSettings={hjid:12345,hjsv:<b>5</b>};</code> where <code><b>5</b></code> is your Hotjar snippet version'),
    '#maxlength' => 10,
    '#required' => TRUE,
    '#size' => 5,
    '#title' => $this
      ->t('Hotjar snippet version'),
    '#type' => 'textfield',
  ];
  $visibility = $this->hotjarSettings
    ->getSetting('visibility_pages');
  $pages = $this->hotjarSettings
    ->getSetting('pages');

  // Visibility settings.
  $form['tracking']['page_track'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Pages'),
    '#group' => 'tracking_scope',
    '#open' => TRUE,
  ];
  if ($visibility == 2) {
    $form['tracking']['page_track'] = [];
    $form['tracking']['page_track']['hotjar_visibility_pages'] = [
      '#type' => 'value',
      '#value' => 2,
    ];
    $form['tracking']['page_track']['hotjar_pages'] = [
      '#type' => 'value',
      '#value' => $pages,
    ];
  }
  else {
    $options = [
      $this
        ->t('Every page except the listed pages'),
      $this
        ->t('The listed pages only'),
    ];
    $description_args = [
      '%blog' => 'blog',
      '%blog-wildcard' => 'blog/*',
      '%front' => '<front>',
    ];
    $description = $this
      ->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", $description_args);
    $title = $this
      ->t('Pages');
    $form['tracking']['page_track']['hotjar_visibility_pages'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Add tracking to specific pages'),
      '#options' => $options,
      '#default_value' => $visibility,
    ];
    $form['tracking']['page_track']['hotjar_pages'] = [
      '#type' => 'textarea',
      '#title' => $title,
      '#title_display' => 'invisible',
      '#default_value' => $pages,
      '#description' => $description,
      '#rows' => 10,
    ];
  }

  // Render the role overview.
  $visibility_roles = $this->hotjarSettings
    ->getSetting('roles');
  $form['tracking']['role_track'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Roles'),
    '#group' => 'tracking_scope',
    '#open' => TRUE,
  ];
  $form['tracking']['role_track']['hotjar_visibility_roles'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Add tracking for specific roles'),
    '#options' => [
      $this
        ->t('Add to the selected roles only'),
      $this
        ->t('Add to every role except the selected ones'),
    ],
    '#default_value' => $this->hotjarSettings
      ->getSetting('visibility_roles'),
  ];
  $role_options = array_map([
    '\\Drupal\\Component\\Utility\\SafeMarkup',
    'checkPlain',
  ], user_role_names());
  $form['tracking']['role_track']['hotjar_roles'] = [
    '#type' => 'checkboxes',
    '#title' => $this
      ->t('Roles'),
    '#default_value' => !empty($visibility_roles) ? $visibility_roles : [],
    '#options' => $role_options,
    '#description' => $this
      ->t('If none of the roles are selected, all users will be tracked. If a user has any of the roles checked, that user will be tracked (or excluded, depending on the setting above).'),
  ];
  return parent::buildForm($form, $form_state);
}