function LinkEdit::render_link in Views (for Drupal 7) 8.3
Same name in this branch
- 8.3 lib/Views/node/Plugin/views/field/LinkEdit.php \Views\node\Plugin\views\field\LinkEdit::render_link()
- 8.3 lib/Views/user/Plugin/views/field/LinkEdit.php \Views\user\Plugin\views\field\LinkEdit::render_link()
- 8.3 lib/Views/locale/Plugin/views/field/LinkEdit.php \Views\locale\Plugin\views\field\LinkEdit::render_link()
- 8.3 lib/Views/comment/Plugin/views/field/LinkEdit.php \Views\comment\Plugin\views\field\LinkEdit::render_link()
1 call to LinkEdit::render_link()
- LinkEdit::render in lib/
Views/ locale/ Plugin/ views/ field/ LinkEdit.php - Render the field.
File
- lib/
Views/ locale/ Plugin/ views/ field/ LinkEdit.php, line 67 - Definition of Views\locale\Plugin\views\field\LinkEdit.
Class
- LinkEdit
- Field handler to present a link to edit a translation.
Namespace
Views\locale\Plugin\views\fieldCode
function render_link($data, $values) {
$text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = 'admin/build/translate/edit/' . $data;
$this->options['alter']['query'] = drupal_get_destination();
return $text;
}