You are here

protected function LinkApprove::getDefaultLabel in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Plugin/views/field/LinkApprove.php \Drupal\comment\Plugin\views\field\LinkApprove::getDefaultLabel()

Returns the default label for this link.

Return value

string The default link label.

Overrides LinkBase::getDefaultLabel

File

core/modules/comment/src/Plugin/views/field/LinkApprove.php, line 36

Class

LinkApprove
Provides a comment approve link.

Namespace

Drupal\comment\Plugin\views\field

Code

protected function getDefaultLabel() {
  return $this
    ->t('Approve');
}