You are here

public function AggregatorFeedBlock::blockForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php \Drupal\aggregator\Plugin\Block\AggregatorFeedBlock::blockForm()

Overrides BlockPluginTrait::blockForm

File

core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php, line 95

Class

AggregatorFeedBlock
Provides an 'Aggregator feed' block with the latest items from the feed.

Namespace

Drupal\aggregator\Plugin\Block

Code

public function blockForm($form, FormStateInterface $form_state) {
  $feeds = $this->feedStorage
    ->loadMultiple();
  $options = [];
  foreach ($feeds as $feed) {
    $options[$feed
      ->id()] = $feed
      ->label();
  }
  $form['feed'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Select the feed that should be displayed'),
    '#default_value' => $this->configuration['feed'],
    '#options' => $options,
  ];
  $range = range(2, 20);
  $form['block_count'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Number of news items in block'),
    '#default_value' => $this->configuration['block_count'],
    '#options' => array_combine($range, $range),
  ];
  return $form;
}