views_handler_field_comment_node_link.inc in Views (for Drupal 7) 6.3
File
modules/comment/views_handler_field_comment_node_link.inc
View source
<?php
class views_handler_field_comment_node_link extends views_handler_field {
function construct() {
parent::construct();
$this->additional_fields['nid'] = array(
'field' => 'nid',
);
$this->additional_fields['type'] = array(
'field' => 'type',
);
$this->additional_fields['comment'] = array(
'field' => 'comment',
);
}
function option_definition() {
$options = parent::option_definition();
$options['teaser'] = array(
'default' => 0,
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['teaser'] = array(
'#type' => 'checkbox',
'#title' => t('Show teaser-style link'),
'#default_value' => $this->options['teaser'],
'#description' => t('Show the comment link in the form used on standard node teasers, rather than the full node form.'),
);
}
function query() {
$this
->ensure_my_table();
$this
->add_additional_fields();
}
function render($values) {
$node = new stdClass();
$node->nid = $this
->get_value($values, 'nid');
$node->type = $this
->get_value($values, 'type');
$node->comment = $this
->get_value($values, 'comment');
$links = comment_link('node', $node, $this->options['teaser']);
return !empty($links) ? theme('links', $links, array(
'class' => 'links inline',
)) : '';
}
}