protected function RevisionLink::getDefaultLabel in Support Ticketing System 8
Returns the default label for this link.
Return value
string The default link label.
Overrides LinkBase::getDefaultLabel
2 methods override RevisionLink::getDefaultLabel()
- RevisionLinkDelete::getDefaultLabel in modules/
support_ticket/ src/ Plugin/ views/ field/ RevisionLinkDelete.php - Returns the default label for this link.
- RevisionLinkRevert::getDefaultLabel in modules/
support_ticket/ src/ Plugin/ views/ field/ RevisionLinkRevert.php - Returns the default label for this link.
File
- modules/
support_ticket/ src/ Plugin/ views/ field/ RevisionLink.php, line 52 - Contains \Drupal\support_ticket\Plugin\views\field\RevisionLink.
Class
- RevisionLink
- Field handler to present a link to a support ticket revision.
Namespace
Drupal\support_ticket\Plugin\views\fieldCode
protected function getDefaultLabel() {
return $this
->t('View');
}