JsDeprecationTestController.php in Drupal 8
Namespace
Drupal\js_deprecation_test\ControllerFile
core/modules/system/tests/modules/js_deprecation_test/src/Controller/JsDeprecationTestController.phpView source
<?php
namespace Drupal\js_deprecation_test\Controller;
/**
* Test Controller to show message links.
*/
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',
],
],
];
}
}
Classes
Name![]() |
Description |
---|---|
JsDeprecationTestController | Test Controller to show message links. |