You are here

public function AutocompletionConfiguration::setTheme in Search Autocomplete 8

Same name and namespace in other branches
  1. 2.x 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 420

Class

AutocompletionConfiguration
Defines the autocompletion_configuration entity.

Namespace

Drupal\search_autocomplete\Entity

Code

public function setTheme($theme) {
  $this->theme = $theme;
}