You are here

views_handler_field_comment_link_delete.inc in Views (for Drupal 7) 6.3

File

modules/comment/views_handler_field_comment_link_delete.inc
View source
<?php

/**
 * Field handler to present a link to delete a node.
 *
 * @ingroup views_field_handlers
 */
class views_handler_field_comment_link_delete extends views_handler_field_comment_link {
  function access() {

    //needs permission to administer comments in general
    return user_access('administer comments');
  }
  function render_link($data, $values) {
    $text = !empty($this->options['text']) ? $this->options['text'] : t('delete');
    $cid = $this
      ->get_value($values, 'cid');
    $this->options['alter']['make_link'] = TRUE;
    $this->options['alter']['path'] = "comment/delete/" . $cid;
    $this->options['alter']['query'] = drupal_get_destination();
    return $text;
  }

}

Classes

Namesort descending Description
views_handler_field_comment_link_delete Field handler to present a link to delete a node.