class AutocompleteController
Same name in other branches
- 9 core/modules/system/tests/modules/form_test/src/AutocompleteController.php \Drupal\form_test\AutocompleteController
- 10 core/modules/system/tests/modules/form_test/src/AutocompleteController.php \Drupal\form_test\AutocompleteController
- 11.x core/modules/system/tests/modules/form_test/src/AutocompleteController.php \Drupal\form_test\AutocompleteController
Defines a controller class with methods for autocompletion.
Hierarchy
- class \Drupal\form_test\AutocompleteController
Expanded class hierarchy of AutocompleteController
File
-
core/
modules/ system/ tests/ modules/ form_test/ src/ AutocompleteController.php, line 10
Namespace
Drupal\form_testView source
class AutocompleteController {
/**
* Returns some autocompletion content.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* A JSON response.
*/
public function autocomplete1() {
return new JsonResponse([
'key' => 'value',
]);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
AutocompleteController::autocomplete1 | public | function | Returns some autocompletion content. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.