TestControllers.php

Contains \Drupal\menu_test\TestControllers.

Namespace

Drupal\menu_test

File

drupal/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/TestControllers.php
View source
<?php

/**
 * @file
 * Contains \Drupal\menu_test\TestControllers.
 */
namespace Drupal\menu_test;

use Drupal\Core\Entity\EntityInterface;

/**
 * Controllers for testing the menu integration routing system.
 */
class TestControllers {

  /**
   * Prints out test data.
   */
  public function test1() {
    return 'test1';
  }

  /**
   * Prints out test data.
   */
  public function test2() {
    return 'test2';
  }

}

Classes

Namesort descending Description
TestControllers Controllers for testing the menu integration routing system.