function _views_file_status

2 calls to _views_file_status()

File

drupal/core/modules/file/file.views.inc, line 522
Provide views data and handlers for file.module.

Code

function _views_file_status($choice = NULL) {
  $status = array(
    0 => t('Temporary'),
    FILE_STATUS_PERMANENT => t('Permanent'),
  );
  if (isset($choice)) {
    return isset($status[$choice]) ? $status[$choice] : t('Unknown');
  }
  return $status;
}