function LinkApprove::getUrlInfo
Returns the URI elements of the link.
Parameters
\Drupal\views\ResultRow $row: A view result row.
Return value
\Drupal\Core\Url|null The URI elements of the link.
Overrides LinkBase::getUrlInfo
File
- 
              core/modules/ comment/ src/ Plugin/ views/ field/ LinkApprove.php, line 21 
Class
- LinkApprove
- Provides a comment approve link.
Namespace
Drupal\comment\Plugin\views\fieldCode
protected function getUrlInfo(ResultRow $row) {
  $entity = $this->getEntity($row);
  if (!$entity) {
    return NULL;
  }
  return Url::fromRoute('comment.approve', [
    'comment' => $entity->id(),
  ]);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
