function views_form_test_form_views_form_media_media_page_list_alter

Same name and namespace in other branches
  1. 9 core/modules/views/tests/modules/views_form_test/views_form_test.module \views_form_test_form_views_form_media_media_page_list_alter()
  2. 10 core/modules/views/tests/modules/views_form_test/views_form_test.module \views_form_test_form_views_form_media_media_page_list_alter()

Implements hook_form_BASE_FORM_ID_alter().

File

core/modules/views/tests/modules/views_form_test/views_form_test.module, line 13

Code

function views_form_test_form_views_form_media_media_page_list_alter(&$form, FormStateInterface $form_state, $form_id) {
    $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.