You are here

public static function LingotekConfigSet::getAllConfigDocIds in Lingotek Translation 7.7

Same name and namespace in other branches
  1. 7.6 lib/Drupal/lingotek/LingotekConfigSet.php \LingotekConfigSet::getAllConfigDocIds()
1 call to LingotekConfigSet::getAllConfigDocIds()
lingotek_save_config_profile in ./lingotek.admin.inc

File

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

Class

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

Code

public static function getAllConfigDocIds() {
  $doc_ids = db_select('lingotek_config_metadata', 'l')
    ->fields('l', array(
    'value',
  ))
    ->condition('config_key', 'document_id')
    ->execute()
    ->fetchCol();
  return $doc_ids;
}