public static function LingotekSync::getAllChunkLids in Lingotek Translation 7.5
Same name and namespace in other branches
- 7.3 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::getAllChunkLids()
- 7.4 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::getAllChunkLids()
1 call to LingotekSync::getAllChunkLids()
- LingotekSync::getChunkCountByStatus in lib/
Drupal/ lingotek/ LingotekSync.php
File
- lib/
Drupal/ lingotek/ LingotekSync.php, line 548 - LingotekSync
Class
- LingotekSync
- A utility class for Lingotek Syncing.
Code
public static function getAllChunkLids() {
// return the list of all lids
$query = db_select('{locales_source}', 'ls')
->fields('ls', array(
'lid',
));
return $query
->execute()
->fetchCol();
}