views_handler_filter_node_comment.inc

  1. 3.x modules/comment/views_handler_filter_node_comment.inc
  2. 2.x modules/comment/views_handler_filter_node_comment.inc

File

modules/comment/views_handler_filter_node_comment.inc
View source
  1. <?php
  2. /**
  3. * Filter based on comment node status
  4. */
  5. class views_handler_filter_node_comment extends views_handler_filter_in_operator {
  6. function get_value_options() {
  7. $this->value_options = array(
  8. COMMENT_NODE_DISABLED => t('Disabled'),
  9. COMMENT_NODE_READ_ONLY => t('Read only'),
  10. COMMENT_NODE_READ_WRITE => t('Read/Write'),
  11. );
  12. }
  13. }