You are here

function _system_test_second_shutdown_function in Drupal 8

Same name and namespace in other branches
  1. 7 modules/simpletest/tests/system_test.module \_system_test_second_shutdown_function()
  2. 9 core/modules/system/tests/modules/system_test/system_test.module \_system_test_second_shutdown_function()

Dummy shutdown function.

2 string references to '_system_test_second_shutdown_function'
ShutdownFunctionsTest::testShutdownFunctions in core/modules/system/tests/src/Functional/System/ShutdownFunctionsTest.php
Test shutdown functions.
_system_test_first_shutdown_function in core/modules/system/tests/modules/system_test/system_test.module
Dummy shutdown function which registers another shutdown function.

File

core/modules/system/tests/modules/system_test/system_test.module, line 128
Test module.

Code

function _system_test_second_shutdown_function($arg1, $arg2) {

  // Set something to ensure that this function got called.
  \Drupal::state()
    ->set('_system_test_second_shutdown_function', [
    $arg1,
    $arg2,
  ]);

  // Throw an exception with an HTML tag. Since this is called in a shutdown
  // function, it will not bubble up to the default exception handler but will
  // be caught in _drupal_shutdown_function() and be displayed through
  // \Drupal\Core\Utility\Error::renderExceptionSafe() if possible.
  throw new Exception('Drupal is <blink>awesome</blink>.');
}