AutocompleteController.php in Zircon Profile 8.0
Same filename and directory in other branches
Contains \Drupal\form_test\AutocompleteController.
Namespace
Drupal\form_testFile
core/modules/system/tests/modules/form_test/src/AutocompleteController.phpView source
<?php
/**
* @file
* Contains \Drupal\form_test\AutocompleteController.
*/
namespace Drupal\form_test;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* Defines a controller class with methods for autocompletion.
*/
class AutocompleteController {
/**
* Returns some autocompletion content.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* A JSON response.
*/
public function autocomplete1() {
return new JsonResponse(array(
'key' => 'value',
));
}
}
Classes
Name | Description |
---|---|
AutocompleteController | Defines a controller class with methods for autocompletion. |