function ViewsFormTestHooks::formViewsFormMediaMediaPageListAlter

Same name and namespace in other branches
  1. 11.x core/modules/views/tests/modules/views_form_test/src/Hook/ViewsFormTestHooks.php \Drupal\views_form_test\Hook\ViewsFormTestHooks::formViewsFormMediaMediaPageListAlter()

Implements hook_form_BASE_FORM_ID_alter().

Attributes

#[Hook('form_views_form_media_media_page_list_alter')]

File

core/modules/views/tests/modules/views_form_test/src/Hook/ViewsFormTestHooks.php, line 18

Class

ViewsFormTestHooks
Hook implementations for views_form_test.

Namespace

Drupal\views_form_test\Hook

Code

public function formViewsFormMediaMediaPageListAlter(&$form, FormStateInterface $form_state, $form_id) : void {
  $state = \Drupal::state();
  $count = $state->get('hook_form_BASE_FORM_ID_alter_count', 0);
  $state->set('hook_form_BASE_FORM_ID_alter_count', $count + 1);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.