You are here

function tmgmt_ui_redirect_queue_count in Translation Management Tool 7

Returns the amount of entries in the redirect queue.

Return value

The amount of entries in the redirect queue.

1 call to tmgmt_ui_redirect_queue_count()
tmgmt_job_form in ui/includes/tmgmt_ui.pages.inc
Entity API form the job entity.

File

ui/tmgmt_ui.module, line 1089
Common Translation managment UI.

Code

function tmgmt_ui_redirect_queue_count() {
  if (!empty($_SESSION['tmgmt_ui']['redirect_queue'])) {
    return count($_SESSION['tmgmt_ui']['redirect_queue']);
  }
  return 0;
}