You are here

public function SimplesitemapSettingsForm::buildForm in Simple XML sitemap 8.3

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

Class

SimplesitemapSettingsForm
Class SimplesitemapSettingsForm @package Drupal\simple_sitemap\Form

Namespace

Drupal\simple_sitemap\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['simple_sitemap_settings']['#prefix'] = FormHelper::getDonationText();
  $form['simple_sitemap_settings']['settings'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Settings'),
  ];
  $form['simple_sitemap_settings']['settings']['cron_generate'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Regenerate the sitemaps during cron runs'),
    '#description' => $this
      ->t('Uncheck this if you intend to only regenerate the sitemaps manually or via drush.'),
    '#default_value' => $this->generator
      ->getSetting('cron_generate', TRUE),
  ];
  $form['simple_sitemap_settings']['settings']['cron_generate_interval'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Sitemap generation interval'),
    '#description' => $this
      ->t('The sitemap will be generated according to this interval.'),
    '#default_value' => $this->generator
      ->getSetting('cron_generate_interval', 0),
    '#options' => FormHelper::getCronIntervalOptions(),
    '#states' => [
      'visible' => [
        ':input[name="cron_generate"]' => [
          'checked' => TRUE,
        ],
      ],
    ],
  ];
  $form['simple_sitemap_settings']['settings']['xsl'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Add styling and sorting to sitemaps'),
    '#description' => $this
      ->t('If checked, sitemaps will be displayed as tables with sortable entries and thus become much friendlier towards human visitors. Search engines will not care.'),
    '#default_value' => $this->generator
      ->getSetting('xsl', TRUE),
  ];
  $form['simple_sitemap_settings']['settings']['languages'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Language settings'),
    '#open' => FALSE,
  ];
  $form['simple_sitemap_settings']['settings']['languages']['disable_language_hreflang'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Remove hreflang markup in HTML'),
    '#description' => $this
      ->t('Google recommends displaying hreflang definitions either in the HTML markup or in the sitemap, but not in both places.<br>If checked, hreflang definitions created by the language module will be removed from the markup reducing its size.'),
    '#default_value' => $this->generator
      ->getSetting('disable_language_hreflang', FALSE),
  ];
  $form['simple_sitemap_settings']['settings']['languages']['skip_untranslated'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Skip non-existent translations'),
    '#description' => $this
      ->t('If checked, entity links are generated exclusively for languages the entity has been translated to as long as the language is not excluded below.<br>Otherwise entity links are generated for every language installed on the site apart from languages excluded below.<br>Bear in mind that non-entity paths like homepage will always be generated for every non-excluded language.'),
    '#default_value' => $this->generator
      ->getSetting('skip_untranslated', FALSE),
  ];
  $language_options = [];
  foreach ($this->languageManager
    ->getLanguages() as $language) {
    if (!$language
      ->isDefault()) {
      $language_options[$language
        ->getId()] = $language
        ->getName();
    }
  }
  $form['simple_sitemap_settings']['settings']['languages']['excluded_languages'] = [
    '#title' => $this
      ->t('Exclude languages'),
    '#type' => 'checkboxes',
    '#options' => $language_options,
    '#description' => !empty($language_options) ? $this
      ->t('There will be no links generated for languages checked here.') : $this
      ->t('There are no languages other than the default language <a href="@url">available</a>.', [
      '@url' => $GLOBALS['base_url'] . '/admin/config/regional/language',
    ]),
    '#default_value' => $this->generator
      ->getSetting('excluded_languages', []),
  ];
  $form['simple_sitemap_settings']['advanced'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Advanced settings'),
    '#open' => TRUE,
  ];
  $variants = $this->generator
    ->getSitemapManager()
    ->getSitemapVariants(NULL, FALSE);
  $default_variant = $this->generator
    ->getSetting('default_variant');
  $form['simple_sitemap_settings']['advanced']['default_variant'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Default sitemap variant'),
    '#description' => $this
      ->t('This sitemap variant will be available under <em>/sitemap.xml</em> in addition to its default path <em>/variant-name/sitemap.xml</em>.<br>Variants can be configured <a href="@url">here</a>.', [
      '@url' => $GLOBALS['base_url'] . '/admin/config/search/simplesitemap/variants',
    ]),
    '#default_value' => isset($variants[$default_variant]) ? $default_variant : '',
    '#options' => [
      '' => $this
        ->t('- None -'),
    ] + array_map(function ($variant) {
      return $this
        ->t($variant['label']);
    }, $variants),
  ];
  $form['simple_sitemap_settings']['advanced']['base_url'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Default base URL'),
    '#default_value' => $this->generator
      ->getSetting('base_url', ''),
    '#size' => 30,
    '#description' => $this
      ->t('On some hosting providers it is impossible to pass parameters to cron to tell Drupal which URL to bootstrap with. In this case the base URL of sitemap links can be overridden here.<br>Example: <em>@url</em>', [
      '@url' => $GLOBALS['base_url'],
    ]),
  ];
  $form['simple_sitemap_settings']['advanced']['remove_duplicates'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Exclude duplicate links'),
    '#description' => $this
      ->t('Prevent per-sitemap variant duplicate links.<br>Unchecking this may help avoiding PHP memory errors on huge sites.'),
    '#default_value' => $this->generator
      ->getSetting('remove_duplicates', TRUE),
  ];
  $form['simple_sitemap_settings']['advanced']['max_links'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Maximum links in a sitemap'),
    '#min' => 1,
    '#description' => $this
      ->t('The maximum number of links one sitemap can hold. If more links are generated than set here, a sitemap index will be created and the links split into several sub-sitemaps.<br>50 000 links is the maximum Google will parse per sitemap, but choosing a lower value may be needed to avoid PHP memory errors on huge sites.<br>If left blank, all links will be shown on a single sitemap.'),
    '#default_value' => $this->generator
      ->getSetting('max_links'),
  ];
  $form['simple_sitemap_settings']['advanced']['generate_duration'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Sitemap generation max duration'),
    '#min' => 1,
    '#description' => $this
      ->t('The maximum duration <strong>in seconds</strong> the generation task can run during a single cron run or during one batch process iteration.<br>The higher the number, the quicker the generation process, but higher the risk of PHP timeout errors.'),
    '#default_value' => $this->generator
      ->getSetting('generate_duration', 10000) / 1000,
    '#required' => TRUE,
  ];
  $form['simple_sitemap_settings']['advanced']['entities_per_queue_item'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Entities per queue item'),
    '#min' => 1,
    '#description' => $this
      ->t('The number of entities to process in each queue item.<br>Increasing this number will use more memory but will result in less queries improving generation speed.'),
    '#default_value' => $this->generator
      ->getSetting('entities_per_queue_item', 50),
  ];
  $this->formHelper
    ->displayRegenerateNow($form['simple_sitemap_settings']);
  return parent::buildForm($form, $form_state);
}