You are here

public static function LingotekConfigSet::deleteConfigSetWorkflowIds in Lingotek Translation 7.7

1 call to LingotekConfigSet::deleteConfigSetWorkflowIds()
lingotek_save_config_profile in ./lingotek.admin.inc

File

lib/Drupal/lingotek/LingotekConfigSet.php, line 361
Defines LingotekConfigSet.

Class

LingotekConfigSet
A class wrapper for Lingotek-specific behavior on ConfigSets.

Code

public static function deleteConfigSetWorkflowIds() {
  db_delete('lingotek_config_metadata')
    ->condition('config_key', 'workflow_id', '=')
    ->execute();
}