views_handler_filter_node_comment.inc
Same filename in other branches
File
-
modules/
comment/ views_handler_filter_node_comment.inc
View source
<?php
/**
* Filter based on comment node status
*
* @ingroup views_filter_handlers
*/
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
Title | Deprecated | Summary |
---|---|---|
views_handler_filter_node_comment | Filter based on comment node status |