You are here

class JsDeprecationTestController in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/js_deprecation_test/src/Controller/JsDeprecationTestController.php \Drupal\js_deprecation_test\Controller\JsDeprecationTestController

Test Controller to show message links.

Hierarchy

Expanded class hierarchy of JsDeprecationTestController

File

core/modules/system/tests/modules/js_deprecation_test/src/Controller/JsDeprecationTestController.php, line 8

Namespace

Drupal\js_deprecation_test\Controller
View source
class JsDeprecationTestController {

  /**
   * Renders page that has js_deprecation_test/deprecation library attached.
   *
   * @return array
   *   Render array.
   */
  public function jsDeprecationTest() {
    return [
      '#attached' => [
        'library' => [
          'js_deprecation_test/deprecation_test',
        ],
      ],
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
JsDeprecationTestController::jsDeprecationTest public function Renders page that has js_deprecation_test/deprecation library attached.