You are here

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

ModifierIndex

Namespace

Drupal\purl\Plugin

Code

public function deleteEntriesByProvider($providerId) {
  $this->connection
    ->delete('purl_modifiers')
    ->condition('provider', $providerId)
    ->execute();
}