views_handler_field_comment_link_delete.inc

Same filename in other branches
  1. 6.x-3.x modules/comment/views_handler_field_comment_link_delete.inc

Definition of views_handler_field_comment_link_delete.

File

modules/comment/views_handler_field_comment_link_delete.inc

View source
<?php


/**
 * @file
 * Definition of views_handler_field_comment_link_delete.
 */

/**
 * 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 {
    
    /**
     * {@inheritdoc}
     */
    public function access() {
        // Needs permission to administer comments in general.
        return user_access('administer comments');
    }
    
    /**
     * {@inheritdoc}
     */
    public 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/" . $cid . "/delete";
        $this->options['alter']['query'] = drupal_get_destination();
        return $text;
    }

}

Classes

Title Deprecated Summary
views_handler_field_comment_link_delete Field handler to present a link to delete a node.