public static function LingotekSync::deleteTargetEntriesForAllChunks in Lingotek Translation 7.7
Same name and namespace in other branches
- 7.3 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::deleteTargetEntriesForAllChunks()
- 7.4 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::deleteTargetEntriesForAllChunks()
- 7.5 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::deleteTargetEntriesForAllChunks()
- 7.6 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::deleteTargetEntriesForAllChunks()
1 call to LingotekSync::deleteTargetEntriesForAllChunks()
- LingotekSync::deleteTargetEntriesForAllDocs in lib/
Drupal/ lingotek/ LingotekSync.php
File
- lib/
Drupal/ lingotek/ LingotekSync.php, line 294 - LingotekSync
Class
- LingotekSync
- A utility class for Lingotek Syncing.
Code
public static function deleteTargetEntriesForAllChunks($lingotek_locale) {
$key = 'target_sync_status_' . $lingotek_locale;
db_delete('lingotek_config_metadata')
->condition('config_key', $key)
->execute();
}