You are here

public function AutocompletionConfiguration::getDeletable in Search Autocomplete 8

Same name and namespace in other branches
  1. 2.x src/Entity/AutocompletionConfiguration.php \Drupal\search_autocomplete\Entity\AutocompletionConfiguration::getDeletable()

Returns whether the configuration is deletable by authorized users.

Return value

boolean TRUE if the configuration is deletable, FALSE otherwise.

Overrides AutocompletionConfigurationInterface::getDeletable

File

src/Entity/AutocompletionConfiguration.php, line 441

Class

AutocompletionConfiguration
Defines the autocompletion_configuration entity.

Namespace

Drupal\search_autocomplete\Entity

Code

public function getDeletable() {
  return $this->deletable;
}