Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 10 |
| LinkReply | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 10 |
| getUrlInfo | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 8 |
|||
| getDefaultLabel | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\comment\Plugin\views\field\LinkReply. | |
| */ | |
| namespace Drupal\comment\Plugin\views\field; | |
| use Drupal\Core\Url; | |
| use Drupal\views\Plugin\views\field\LinkBase; | |
| use Drupal\views\ResultRow; | |
| /** | |
| * Field handler to present a link to reply to a comment. | |
| * | |
| * @ingroup views_field_handlers | |
| * | |
| * @ViewsField("comment_link_reply") | |
| */ | |
| class LinkReply extends LinkBase { | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| protected function getUrlInfo(ResultRow $row) { | |
| /** @var \Drupal\comment\CommentInterface $comment */ | |
| $comment = $this->getEntity($row); | |
| return Url::fromRoute('comment.reply', [ | |
| 'entity_type' => $comment->getCommentedEntityTypeId(), | |
| 'entity' => $comment->getCommentedEntityId(), | |
| 'field_name' => $comment->getFieldName(), | |
| 'pid' => $comment->id(), | |
| ]); | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| protected function getDefaultLabel() { | |
| return $this->t('Reply'); | |
| } | |
| } |