Resolve #3467947 "Separate indexing settings"
Edited by Bryan Heisler
Merge request reports
Activity
added 1 commit
added 1 commit
added 1 commit
11 use Drupal\Core\Url; 12 use Drupal\search\Entity\SearchPage; 13 use Drupal\search\SearchIndexInterface; 14 use Symfony\Component\DependencyInjection\ContainerInterface; 15 16 /** 17 * Provides a Search form. 18 */ 19 final class IndexSettingsForm extends FormBase { 20 21 /** 22 * The entities being listed. 23 * 24 * @var \Drupal\search\SearchPageInterface[] 25 */ 26 protected $entities = []; changed this line in version 6 of the diff
44 * 45 * @var \Drupal\Core\Extension\ModuleHandlerInterface 46 */ 47 protected $moduleHandler; 48 49 /** 50 * Constructs a new SearchPageListBuilder object. 51 * 52 * @param \Drupal\Core\Messenger\MessengerInterface $messenger 53 * The messenger. 54 * @param \Drupal\search\SearchIndexInterface $search_index 55 * The search index. 56 * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler 57 * The module handler. 58 */ 59 public function __construct(MessengerInterface $messenger, SearchIndexInterface $search_index, ModuleHandlerInterface $module_handler) { changed this line in version 6 of the diff
173 $form['actions']['#type'] = 'actions'; 174 $form['actions']['submit'] = [ 175 '#type' => 'submit', 176 '#value' => $this->t('Save configuration'), 177 '#button_type' => 'primary', 178 ]; 179 180 return $form; 181 } 182 183 /** 184 * {@inheritdoc} 185 */ 186 public function validateForm(array &$form, FormStateInterface $form_state): void { 187 // @todo Validate the form here. 188 // Example: changed this line in version 6 of the diff
72 $container->get('search.index'), 73 $container->get('module_handler') 74 ); 75 } 76 77 /** 78 * {@inheritdoc} 79 */ 80 public function getFormId(): string { 81 return 'search_index_settings'; 82 } 83 84 /** 85 * {@inheritdoc} 86 */ 87 public function buildForm(array $form, FormStateInterface $form_state): array { added 153 commits
-
1bd22a3b...49f6e6bb - 151 commits from branch
project:11.x
- c8121902 - Issue #3467947: Code style corrections.
- 65023f09 - Merge remote-tracking branch 'origin/11.x' into 3467947-separate-indexing-settings
-
1bd22a3b...49f6e6bb - 151 commits from branch
added 42 commits
-
65023f09...3d350b03 - 35 commits from branch
project:11.x
- 13a8200a - Issue #3467947: Separate indexing settings from search pages
- bae7ce81 - Issue #3467947: Fix function comments based on phpcs feedback.
- c19cd971 - Issue #3467947: Fix some phpunit tests.
- 5bc01488 - Issue #3467947: update urls in phpunit test.
- 5730d9c5 - Issue #3467947: Add missing return types to some functions.
- 59774808 - Issue #3467947: Code style corrections.
- 6531b411 - Issue #3467947 Fixed pipeline failure issues.
Toggle commit list-
65023f09...3d350b03 - 35 commits from branch
added 102 commits
-
db595861...eab46c49 - 93 commits from branch
project:11.x
- 1d93784e - Issue #3467947: Separate indexing settings from search pages
- 42cd5754 - Issue #3467947: Fix function comments based on phpcs feedback.
- c0dea354 - Issue #3467947: Fix some phpunit tests.
- b9f6850c - Issue #3467947: update urls in phpunit test.
- d56f3eb9 - Issue #3467947: Add missing return types to some functions.
- 0d465132 - Issue #3467947: Code style corrections.
- 777b4a38 - Issue #3467947 Fixed pipeline failure issues.
- e336aac2 - Update SearchPageListBuilder.php
- 33c1ded7 - Regenerated baseline for pipeline failure
Toggle commit list-
db595861...eab46c49 - 93 commits from branch
added 203 commits
-
511acea8...928a5cbd - 202 commits from branch
project:11.x
- a12f1565 - Merge branch '11.x' into 3467947-separate-indexing-settings
-
511acea8...928a5cbd - 202 commits from branch
added 483 commits
-
a12f1565...1a2079a4 - 474 commits from branch
project:11.x
- 39e7dad9 - Issue #3467947: Separate indexing settings from search pages
- f5341107 - Issue #3467947: Fix function comments based on phpcs feedback.
- c99c05f7 - Issue #3467947: Fix some phpunit tests.
- 1a6c4a57 - Issue #3467947: update urls in phpunit test.
- 40617648 - Issue #3467947: Add missing return types to some functions.
- f248528c - Issue #3467947: Code style corrections.
- 6d40a0fb - Issue #3467947 Fixed pipeline failure issues.
- 503c9e9a - Update SearchPageListBuilder.php
- 9bb1a8ad - Update IndexSettingsForm.php
Toggle commit list-
a12f1565...1a2079a4 - 474 commits from branch
Please register or sign in to reply