existing_values_autocomplete_widget.module in Existing Values Autocomplete Widget 8
File
existing_values_autocomplete_widget.module
View source
<?php
use Drupal\Core\Routing\RouteMatchInterface;
function existing_values_autocomplete_widget_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.existing_values_autocomplete_widget':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a widget for text fields that supplies an autocomplete callback with any previously entered (existing) values for the field.') . '</p>';
return $output;
default:
}
}