public function AutocompletionConfiguration::setTheme in Search Autocomplete 2.x
Same name and namespace in other branches
- 8 src/Entity/AutocompletionConfiguration.php \Drupal\search_autocomplete\Entity\AutocompletionConfiguration::setTheme()
Sets the theme to use for autocompletion display.
Parameters
string $theme: The CSS filename for the theme.
Overrides AutocompletionConfigurationInterface::setTheme
File
- src/
Entity/ AutocompletionConfiguration.php, line 469
Class
- AutocompletionConfiguration
- Defines the autocompletion_configuration entity.
Namespace
Drupal\search_autocomplete\EntityCode
public function setTheme($theme) {
$this->theme = $theme;
}