2012-12-11 13:59:20 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorTransactions {
|
|
|
|
|
|
|
|
const TYPE_COMMENT = 'core:comment';
|
|
|
|
const TYPE_SUBSCRIBERS = 'core:subscribers';
|
|
|
|
const TYPE_VIEW_POLICY = 'core:view-policy';
|
|
|
|
const TYPE_EDIT_POLICY = 'core:edit-policy';
|
2013-03-28 08:34:34 -07:00
|
|
|
const TYPE_EDGE = 'core:edge';
|
2012-12-11 13:59:20 -08:00
|
|
|
|
2012-12-11 13:59:35 -08:00
|
|
|
const COLOR_RED = 'red';
|
|
|
|
const COLOR_ORANGE = 'orange';
|
|
|
|
const COLOR_YELLOW = 'yellow';
|
|
|
|
const COLOR_GREEN = 'green';
|
|
|
|
const COLOR_SKY = 'sky';
|
|
|
|
const COLOR_BLUE = 'blue';
|
|
|
|
const COLOR_INDIGO = 'indigo';
|
|
|
|
const COLOR_VIOLET = 'violet';
|
|
|
|
const COLOR_GREY = 'grey';
|
|
|
|
const COLOR_BLACK = 'black';
|
|
|
|
|
2012-12-11 13:59:20 -08:00
|
|
|
}
|