You are here

protected function CloneLink::getDefaultLabel in Quick Node Clone 8

Returns the default label for the link.

Return value

string The default link label.

2 calls to CloneLink::getDefaultLabel()
CloneLink::defineOptions in src/Plugin/views/field/CloneLink.php
Information about options for all kinds of purposes will be held here.
CloneLink::render in src/Plugin/views/field/CloneLink.php
Renders the field.

File

src/Plugin/views/field/CloneLink.php, line 51

Class

CloneLink
Handler for showing quick node clone link.

Namespace

Drupal\quick_node_clone\Plugin\views\field

Code

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