You are here

views_handler_filter_node_comment.inc in Views (for Drupal 7) 6.2

File

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

/**
 * Filter based on comment node status
 */
class views_handler_filter_node_comment extends views_handler_filter_in_operator {
  function get_value_options() {
    $this->value_options = array(
      COMMENT_NODE_DISABLED => t('Disabled'),
      COMMENT_NODE_READ_ONLY => t('Read only'),
      COMMENT_NODE_READ_WRITE => t('Read/Write'),
    );
  }

}

Classes

Namesort descending Description
views_handler_filter_node_comment Filter based on comment node status