mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-28 04:00:17 +01:00
Summary: See PHI2015. Currently, "resigned" reviewers/auditors get different icons in Differential and Diffusion. The Diffusion icon is exceptionally poor and confusing: it does not communicate "resigned" and it is similar to other icons. For clarity and consistency, use the Differential icon (a grey "X") in both applications. Test Plan: {F8492303} Differential Revision: https://secure.phabricator.com/D21593
108 lines
2.9 KiB
PHP
108 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuditStatusConstants extends Phobject {
|
|
|
|
const NONE = '';
|
|
const AUDIT_NOT_REQUIRED = 'audit-not-required';
|
|
const AUDIT_REQUIRED = 'audit-required';
|
|
const CONCERNED = 'concerned';
|
|
const ACCEPTED = 'accepted';
|
|
const AUDIT_REQUESTED = 'requested';
|
|
const RESIGNED = 'resigned';
|
|
const CLOSED = 'closed';
|
|
const CC = 'cc';
|
|
|
|
public static function getStatusNameMap() {
|
|
$map = array(
|
|
self::NONE => pht('Not Applicable'),
|
|
self::AUDIT_NOT_REQUIRED => pht('Audit Not Required'),
|
|
self::AUDIT_REQUIRED => pht('Audit Required'),
|
|
self::CONCERNED => pht('Concern Raised'),
|
|
self::ACCEPTED => pht('Accepted'),
|
|
self::AUDIT_REQUESTED => pht('Audit Requested'),
|
|
self::RESIGNED => pht('Resigned'),
|
|
self::CLOSED => pht('Closed'),
|
|
self::CC => pht("Was CC'd"),
|
|
);
|
|
|
|
return $map;
|
|
}
|
|
|
|
public static function getActionRequiredStatusConstants() {
|
|
return array(
|
|
self::AUDIT_REQUIRED,
|
|
self::AUDIT_REQUESTED,
|
|
);
|
|
}
|
|
|
|
public static function getStatusName($code) {
|
|
return idx(self::getStatusNameMap(), $code, pht('Unknown'));
|
|
}
|
|
|
|
public static function getStatusColor($code) {
|
|
switch ($code) {
|
|
case self::CONCERNED:
|
|
$color = 'red';
|
|
break;
|
|
case self::AUDIT_REQUIRED:
|
|
case self::AUDIT_REQUESTED:
|
|
$color = 'orange';
|
|
break;
|
|
case self::ACCEPTED:
|
|
$color = 'green';
|
|
break;
|
|
case self::AUDIT_NOT_REQUIRED:
|
|
$color = 'blue';
|
|
break;
|
|
case self::CLOSED:
|
|
$color = 'dark';
|
|
break;
|
|
case self::RESIGNED:
|
|
$color = 'grey';
|
|
break;
|
|
default:
|
|
$color = 'bluegrey';
|
|
break;
|
|
}
|
|
return $color;
|
|
}
|
|
|
|
public static function getStatusIcon($code) {
|
|
switch ($code) {
|
|
case self::AUDIT_NOT_REQUIRED:
|
|
$icon = PHUIStatusItemView::ICON_OPEN;
|
|
break;
|
|
case self::AUDIT_REQUIRED:
|
|
case self::AUDIT_REQUESTED:
|
|
$icon = PHUIStatusItemView::ICON_WARNING;
|
|
break;
|
|
case self::CONCERNED:
|
|
$icon = PHUIStatusItemView::ICON_REJECT;
|
|
break;
|
|
case self::ACCEPTED:
|
|
case self::CLOSED:
|
|
$icon = PHUIStatusItemView::ICON_ACCEPT;
|
|
break;
|
|
case self::RESIGNED:
|
|
$icon = 'fa-times';
|
|
break;
|
|
default:
|
|
$icon = PHUIStatusItemView::ICON_QUESTION;
|
|
break;
|
|
}
|
|
return $icon;
|
|
}
|
|
|
|
public static function getOpenStatusConstants() {
|
|
return array(
|
|
self::AUDIT_REQUIRED,
|
|
self::AUDIT_REQUESTED,
|
|
self::CONCERNED,
|
|
);
|
|
}
|
|
|
|
public static function isOpenStatus($status) {
|
|
return in_array($status, self::getOpenStatusConstants());
|
|
}
|
|
|
|
}
|