You are here

public function XmlSitemapSettingsForm::buildForm in XML sitemap 8

Same name and namespace in other branches
  1. 2.x src/Form/XmlSitemapSettingsForm.php \Drupal\xmlsitemap\Form\XmlSitemapSettingsForm::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/XmlSitemapSettingsForm.php, line 103

Class

XmlSitemapSettingsForm
Configure xmlsitemap settings for this site.

Namespace

Drupal\xmlsitemap\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = $this
    ->config('xmlsitemap.settings');
  $intervals = [
    300,
    900,
    1800,
    3600,
    10800,
    21600,
    43200,
    86400,
    172800,
    259200,
    604800,
  ];
  $intervals = array_combine($intervals, $intervals);
  $format_intervals = [];
  foreach ($intervals as $key => $value) {
    $format_intervals[$key] = $this->date
      ->formatInterval($key);
  }
  $form['minimum_lifetime'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Minimum sitemap lifetime'),
    '#options' => [
      0 => $this
        ->t('No minimum'),
    ] + $format_intervals,
    '#description' => $this
      ->t('The minimum amount of time that will elapse before the sitemaps are regenerated. The sitemaps will also only be regenerated on cron if any links have been added, updated, or deleted.<br />Recommended value: <em>1 day</em>.'),
    '#default_value' => $config
      ->get('minimum_lifetime'),
  ];
  $form['xsl'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Include a stylesheet in the sitemaps for humans.'),
    '#description' => $this
      ->t('When enabled, this will add formatting and tables with sorting to make it easier to view the XML sitemap data instead of viewing raw XML output. Search engines will ignore this.'),
    '#default_value' => $config
      ->get('xsl'),
  ];
  $form['prefetch_aliases'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Prefetch URL aliases during sitemap generation.'),
    '#description' => $this
      ->t('When enabled, this will fetch all URL aliases at once instead of one at a time during sitemap generation. For medium or large sites, it is recommended to disable this feature as it uses a lot of memory.'),
    '#default_value' => $config
      ->get('prefetch_aliases'),
    '#access' => FALSE,
  ];
  $form['metatag_exclude_noindex'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Exclude individual items that has the Robots meta tag set to <em>Prevents search engines from indexing this page</em>.'),
    '#description' => $this
      ->t('Note this will ignore default metatags, only when items have overridden the Robots meta tag.'),
    '#default_value' => $config
      ->get('metatag_exclude_noindex'),
    '#access' => $this->moduleHandler
      ->moduleExists('metatag'),
  ];
  $form['advanced'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Advanced settings'),
    '#collapsible' => TRUE,
    '#collapsed' => !$this->state
      ->get('xmlsitemap_developer_mode'),
    '#weight' => 10,
  ];
  $form['advanced']['gz'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Generate additional compressed sitemaps using gzip.'),
    '#default_value' => $config
      ->get('gz'),
    '#disabled' => !function_exists('gzencode'),
  ];
  $chunk_sizes = [
    100,
    500,
    1000,
    2500,
    5000,
    10000,
    25000,
    XMLSITEMAP_MAX_SITEMAP_LINKS,
  ];
  $form['advanced']['chunk_size'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Number of links in each sitemap page'),
    '#options' => [
      'auto' => $this
        ->t('Automatic (recommended)'),
    ] + array_combine($chunk_sizes, $chunk_sizes),
    '#default_value' => xmlsitemap_var('chunk_size'),
    // @todo This description is not clear.
    '#description' => $this
      ->t('If there are problems with rebuilding the sitemap, you may want to manually set this value. If you have more than @max links, an index with multiple sitemap pages will be generated. There is a maximum of @max sitemap pages.', [
      '@max' => XMLSITEMAP_MAX_SITEMAP_LINKS,
    ]),
  ];
  $batch_limits = [
    5,
    10,
    25,
    50,
    100,
    250,
    500,
    1000,
    2500,
    5000,
  ];
  $form['advanced']['batch_limit'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Maximum number of sitemap links to process at once'),
    '#options' => array_combine($batch_limits, $batch_limits),
    '#default_value' => xmlsitemap_var('batch_limit'),
    '#description' => $this
      ->t('If you have problems running cron or rebuilding the sitemap, you may want to lower this value.'),
  ];
  if (!xmlsitemap_check_directory()) {
    $form_state
      ->setErrorByName('path', $this
      ->t('The directory %directory does not exist or is not writable.', [
      '%directory' => xmlsitemap_get_directory(),
    ]));
  }
  $form['advanced']['path'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Sitemap cache directory'),
    '#default_value' => $config
      ->get('path'),
    '#size' => 30,
    '#maxlength' => 255,
    '#description' => $this
      ->t('Subdirectory where the sitemap data will be stored. This folder <strong>must not be shared</strong> with any other Drupal site or install using XML sitemap.'),
    '#field_prefix' => file_build_uri(''),
    '#required' => TRUE,
  ];
  $base_url_override = Settings::get('xmlsitemap_base_url', FALSE);
  $form['advanced']['xmlsitemap_base_url'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Default base URL'),
    '#default_value' => $base_url_override ? $base_url_override : $this->state
      ->get('xmlsitemap_base_url'),
    '#size' => 30,
    '#description' => $this
      ->t('This is the default base URL used for sitemaps and sitemap links.'),
    '#required' => TRUE,
    '#disabled' => !empty($base_url_override),
  ];
  $form['advanced']['lastmod_format'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Last modification date format'),
    '#options' => [
      XMLSITEMAP_LASTMOD_SHORT => $this
        ->t('Short'),
      XMLSITEMAP_LASTMOD_MEDIUM => $this
        ->t('Medium'),
      XMLSITEMAP_LASTMOD_LONG => $this
        ->t('Long'),
    ],
    '#default_value' => $config
      ->get('lastmod_format'),
  ];
  foreach ($form['advanced']['lastmod_format']['#options'] as $key => &$label) {
    $label .= ' (' . gmdate($key) . ')';
  }
  $form['advanced']['xmlsitemap_developer_mode'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Enable developer mode to expose additional settings.'),
    '#default_value' => $this->state
      ->get('xmlsitemap_developer_mode'),
  ];
  $form['advanced']['disable_cron_regeneration'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Disable cron generation of sitemap files.'),
    '#default_value' => $config
      ->get('disable_cron_regeneration'),
    '#description' => $this
      ->t('This can be disabled if other methods are being used to generate the sitemap files, i.e. the <code>drush xmlsitemap:regenerate</code> command.'),
  ];
  $form['xmlsitemap_settings'] = [
    '#type' => 'vertical_tabs',
    '#weight' => 20,
  ];
  $entities = xmlsitemap_get_link_info(NULL, TRUE);
  foreach ($entities as $entity => $entity_info) {
    $form[$entity] = [
      '#type' => 'details',
      '#title' => $entity_info['label'],
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      '#group' => 'xmlsitemap_settings',
    ];
    if (!empty($entity_info['bundles'])) {

      // If this entity has bundles, show a bundle setting summary.
      xmlsitemap_add_form_entity_summary($form[$entity], $entity, $entity_info);
    }
    if (!empty($entity_info['xmlsitemap']['settings callback'])) {

      // Add any entity-specific settings.
      $entity_info['xmlsitemap']['settings callback']($form[$entity]);
    }

    // Ensure that the entity fieldset is not shown if there are no accessible
    // sub-elements.
    $form[$entity]['#access'] = (bool) Element::getVisibleChildren($form[$entity]);
  }
  return parent::buildForm($form, $form_state);
}