You are here

class TestPageTestController in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/test_page_test/src/Controller/TestPageTestController.php \Drupal\test_page_test\Controller\TestPageTestController

Controller routines for test_page_test routes.

Hierarchy

Expanded class hierarchy of TestPageTestController

File

core/modules/system/tests/modules/test_page_test/src/Controller/TestPageTestController.php, line 10

Namespace

Drupal\test_page_test\Controller
View source
class TestPageTestController {

  /**
   * Returns a test page and sets the title.
   */
  public function testPage() {
    $link_text = t('Visually identical test links');
    return [
      '#title' => t('Test page'),
      '#markup' => t('Test page text.') . "<a href=\"/user/login\">{$link_text}</a><a href=\"/user/register\">{$link_text}</a>",
      '#attached' => [
        'drupalSettings' => [
          'test-setting' => 'azAZ09();.,\\\\/-_{}',
        ],
      ],
    ];
  }

  /**
   * Returns a test page and with the call to the dump() function.
   */
  public function testPageVarDump() {
    $role = Role::create([
      'id' => 'test_role',
    ]);
    dump($role);
    return [
      '#title' => t('Test page with var dump'),
      '#markup' => t('Test page text.'),
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestPageTestController::testPage public function Returns a test page and sets the title.
TestPageTestController::testPageVarDump public function Returns a test page and with the call to the dump() function.