LinkApprove.php in Views (for Drupal 7) 8.3
Definition of Views\comment\Plugin\views\field\LinkApprove.
Namespace
Views\comment\Plugin\views\fieldFile
lib/Views/comment/Plugin/views/field/LinkApprove.phpView source
<?php
/**
* @file
* Definition of Views\comment\Plugin\views\field\LinkApprove.
*/
namespace Views\comment\Plugin\views\field;
use Drupal\Core\Annotation\Plugin;
/**
* Provides a comment approve link.
*
* @ingroup views_field_handlers
*
* @Plugin(
* id = "comment_link_approve",
* module = "comment"
* )
*/
class LinkApprove extends Link {
public function access() {
//needs permission to administer comments in general
return user_access('administer comments');
}
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;
}
}
Classes
Name | Description |
---|---|
LinkApprove | Provides a comment approve link. |