function LinkApprove::render_link in Views (for Drupal 7) 8.3
Overrides Link::render_link
File
- lib/
Views/ comment/ Plugin/ views/ field/ LinkApprove.php, line 29 - Definition of Views\comment\Plugin\views\field\LinkApprove.
Class
- LinkApprove
- Provides a comment approve link.
Namespace
Views\comment\Plugin\views\fieldCode
function render_link($data, $values) {
$status = $this
->get_value($values, 'status');
// Don't show an approve link on published nodes.
if ($status == COMMENT_PUBLISHED) {
return;
}
$text = !empty($this->options['text']) ? $this->options['text'] : t('approve');
$cid = $this
->get_value($values, 'cid');
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = "comment/" . $cid . "/approve";
$this->options['alter']['query'] = drupal_get_destination() + array(
'token' => drupal_get_token("comment/{$cid}/approve"),
);
return $text;
}