You are here

function computing_get_status in Drupal Computing 7.2

Check the status of a computing record, bypassing Drupal cache.

File

./computing.module, line 514

Code

function computing_get_status($id) {
  return db_query('SELECT status FROM {computing_record} WHERE id = :id', array(
    ':id' => $id,
  ))
    ->fetchField();
}