Differential D17132 Diff 41201 src/applications/transactions/view/PhabricatorApplicationTransactionCommentView.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/view/PhabricatorApplicationTransactionCommentView.php
| Show First 20 Lines • Show All 295 Lines • ▼ Show 20 Lines | if ($comment_actions) { | ||||
| $key = $comment_action->getKey(); | $key = $comment_action->getKey(); | ||||
| $action_map[$key] = array( | $action_map[$key] = array( | ||||
| 'key' => $key, | 'key' => $key, | ||||
| 'label' => $comment_action->getLabel(), | 'label' => $comment_action->getLabel(), | ||||
| 'type' => $comment_action->getPHUIXControlType(), | 'type' => $comment_action->getPHUIXControlType(), | ||||
| 'spec' => $comment_action->getPHUIXControlSpecification(), | 'spec' => $comment_action->getPHUIXControlSpecification(), | ||||
| 'initialValue' => $comment_action->getInitialValue(), | 'initialValue' => $comment_action->getInitialValue(), | ||||
| 'groupKey' => $comment_action->getGroupKey(), | 'groupKey' => $comment_action->getGroupKey(), | ||||
| 'conflictKey' => $comment_action->getConflictKey(), | |||||
| ); | ); | ||||
| $type_map[$key] = $comment_action; | $type_map[$key] = $comment_action; | ||||
| } | } | ||||
| $options = $this->newCommentActionOptions($action_map); | $options = $this->newCommentActionOptions($action_map); | ||||
| $action_id = celerity_generate_unique_node_id(); | $action_id = celerity_generate_unique_node_id(); | ||||
| ▲ Show 20 Lines • Show All 182 Lines • Show Last 20 Lines | |||||