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()
Overrides Link::render_link
File
- lib/
Views/ comment/ Plugin/ views/ field/ LinkEdit.php, line 43 - Definition of Views\comment\Plugin\views\field\LinkEdit.
Class
- LinkEdit
- Field handler to present a link node edit.
Namespace
Views\comment\Plugin\views\fieldCode
function render_link($data, $values) {
parent::render_link($data, $values);
// ensure user has access to edit this comment.
$comment = $this
->get_value($values);
if (!comment_access('edit', $comment)) {
return;
}
$text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
unset($this->options['alter']['fragment']);
if (!empty($this->options['destination'])) {
$this->options['alter']['query'] = drupal_get_destination();
}
$this->options['alter']['path'] = "comment/" . $comment
->id() . "/edit";
return $text;
}