ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilSCUtils.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once './Services/SystemCheck/classes/class.ilSCTask.php';
6
13{
14 public static function taskStatus2Text($a_status)
15 {
16 global $DIC;
17
18 $lng = $DIC['lng'];
19
20 switch ($a_status) {
22 return $lng->txt('sysc_status_na');
23
25 return $lng->txt('sysc_status_running');
26
28 return $lng->txt('sysc_status_failed');
29
31 return $lng->txt('sysc_status_completed');
32
33 }
34 }
35}
An exception for terminatinating execution or to throw for unit testing.
const STATUS_COMPLETED
const STATUS_FAILED
const STATUS_IN_PROGRESS
const STATUS_NOT_ATTEMPTED
Utilities for system check.
static taskStatus2Text($a_status)
$lng
$DIC
Definition: xapitoken.php:46