public static function LingotekConfigSet::getAllConfigDocIds in Lingotek Translation 7.6
Same name and namespace in other branches
- 7.7 lib/Drupal/lingotek/LingotekConfigSet.php \LingotekConfigSet::getAllConfigDocIds()
1 call to LingotekConfigSet::getAllConfigDocIds()
File
- lib/
Drupal/ lingotek/ LingotekConfigSet.php, line 301 - 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;
}