Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/constants/PhabricatorTransactions.php
| Show All 26 Lines | final class PhabricatorTransactions extends Phobject { | ||||
| const COLOR_INDIGO = 'indigo'; | const COLOR_INDIGO = 'indigo'; | ||||
| const COLOR_VIOLET = 'violet'; | const COLOR_VIOLET = 'violet'; | ||||
| const COLOR_GREY = 'grey'; | const COLOR_GREY = 'grey'; | ||||
| const COLOR_BLACK = 'black'; | const COLOR_BLACK = 'black'; | ||||
| public static function getInlineStateMap() { | public static function getInlineStateMap() { | ||||
| return array( | return array( | ||||
| PhabricatorInlineCommentInterface::STATE_DRAFT => | PhabricatorInlineComment::STATE_DRAFT => | ||||
| PhabricatorInlineCommentInterface::STATE_DONE, | PhabricatorInlineComment::STATE_DONE, | ||||
| PhabricatorInlineCommentInterface::STATE_UNDRAFT => | PhabricatorInlineComment::STATE_UNDRAFT => | ||||
| PhabricatorInlineCommentInterface::STATE_UNDONE, | PhabricatorInlineComment::STATE_UNDONE, | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||