views_handler_filter_node_comment.inc

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

Definition of views_handler_filter_node_comment.

File

modules/comment/views_handler_filter_node_comment.inc

View source
<?php


/**
 * @file
 * Definition of views_handler_filter_node_comment.
 */

/**
 * Filter based on comment node status.
 *
 * @ingroup views_filter_handlers
 */
class views_handler_filter_node_comment extends views_handler_filter_in_operator {
    
    /**
     * {@inheritdoc}
     */
    public function get_value_options() {
        $this->value_options = array(
            COMMENT_NODE_HIDDEN => t('Hidden'),
            COMMENT_NODE_CLOSED => t('Closed'),
            COMMENT_NODE_OPEN => t('Open'),
        );
    }

}

Classes

Title Deprecated Summary
views_handler_filter_node_comment Filter based on comment node status.