public function ModifierIndex::deleteEntriesByProvider in Persistent URL 8
1 call to ModifierIndex::deleteEntriesByProvider()
- ModifierIndex::indexModifiers in src/
Plugin/ ModifierIndex.php
File
- src/
Plugin/ ModifierIndex.php, line 57
Class
Namespace
Drupal\purl\PluginCode
public function deleteEntriesByProvider($providerId) {
$this->connection
->delete('purl_modifiers')
->condition('provider', $providerId)
->execute();
}