Same name and namespace in other branches
  1. 7.x modules/simpletest/tests/ajax_forms_test.module \ajax_forms_test_advanced_commands_add_css_callback()
  2. 8.9.x core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.module \ajax_forms_test_advanced_commands_add_css_callback()
  3. 9 core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.module \ajax_forms_test_advanced_commands_add_css_callback()

Ajax callback for 'add_css'.

1 string reference to 'ajax_forms_test_advanced_commands_add_css_callback'
AjaxFormsTestCommandsForm::buildForm in core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestCommandsForm.php
.

File

core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.module, line 203
Mock module for Ajax forms testing.

Code

function ajax_forms_test_advanced_commands_add_css_callback($form, FormStateInterface $form_state) {
  $response = new AjaxResponse();
  $response
    ->addCommand(new AddCssCommand([
    [
      'href' => 'my/file.css',
      'media' => 'all',
    ],
    [
      'href' => 'https://example.com/css?family=Open+Sans',
      'media' => 'all',
    ],
  ]));
  return $response;
}