public static function SuggestionStorage::deleteContentSuggestion in Autocomplete Search Suggestions 3.0.x
Same name and namespace in other branches
- 8.2 src/SuggestionStorage.php \Drupal\suggestion\SuggestionStorage::deleteContentSuggestion()
- 8 src/SuggestionStorage.php \Drupal\suggestion\SuggestionStorage::deleteContentSuggestion()
Delete all content suggestions.
Return value
object A Delete object.
1 call to SuggestionStorage::deleteContentSuggestion()
- SuggestionHelper::index in src/
SuggestionHelper.php - Create a suggestion index from content titles.
File
- src/
SuggestionStorage.php, line 22
Class
- SuggestionStorage
- Database CRUD.
Namespace
Drupal\suggestionCode
public static function deleteContentSuggestion() {
return \Drupal::database()
->delete('suggestion')
->condition('src', self::CONTENT_BIT)
->execute();
}