TabbableShimTestController.php
Same filename in other branches
Namespace
Drupal\tabbable_shim_test\ControllerFile
-
core/
modules/ system/ tests/ modules/ tabbable_shim_test/ src/ Controller/ TabbableShimTestController.php
View source
<?php
namespace Drupal\tabbable_shim_test\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* For testing the jQuery :tabbable shim.
*/
class TabbableShimTestController extends ControllerBase {
/**
* Provides a page with the tabbingManager library for testing :tabbable.
*
* @return array
* The render array.
*/
public function build() {
return [
'container' => [
'#type' => 'container',
'#attributes' => [
'id' => 'tabbable-test-container',
],
],
'#attached' => [
'library' => [
'core/jquery.ui',
],
],
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TabbableShimTestController | For testing the jQuery :tabbable shim. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.