You are here

public static function LingotekSync::getAllChunkLids in Lingotek Translation 7.4

Same name and namespace in other branches
  1. 7.3 lib/Drupal/lingotek/LingotekSync.php \LingotekSync::getAllChunkLids()
  2. 7.5 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 545
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();
}