Differential D21161 Diff 50383 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 264 Lines • ▼ Show 20 Lines | $wedge = phutil_tag( | ||||
| 'div', | 'div', | ||||
| array( | array( | ||||
| 'class' => 'phui-timeline-wedge', | 'class' => 'phui-timeline-wedge', | ||||
| ), | ), | ||||
| ''); | ''); | ||||
| $badge_view = $this->renderBadgeView(); | $badge_view = $this->renderBadgeView(); | ||||
| $anchor = id(new PhabricatorAnchorView()) | |||||
| ->setAnchorName('reply'); | |||||
| $comment_box = id(new PHUIObjectBoxView()) | $comment_box = id(new PHUIObjectBoxView()) | ||||
| ->setFlush(true) | ->setFlush(true) | ||||
| ->addClass('phui-comment-form-view') | ->addClass('phui-comment-form-view') | ||||
| ->addSigil('phui-comment-form') | ->addSigil('phui-comment-form') | ||||
| ->appendChild($anchor) | |||||
| ->appendChild( | ->appendChild( | ||||
| phutil_tag( | phutil_tag( | ||||
| 'h3', | 'h3', | ||||
| array( | array( | ||||
| 'class' => 'aural-only', | 'class' => 'aural-only', | ||||
| ), | ), | ||||
| pht('Add Comment'))) | pht('Add Comment'))) | ||||
| ->appendChild($image) | ->appendChild($image) | ||||
| ▲ Show 20 Lines • Show All 334 Lines • Show Last 20 Lines | |||||