views_handler_filter_node_status.inc
Same filename in other branches
File
-
modules/
node/ views_handler_filter_node_status.inc
View source
<?php
/**
* Filter by published status
*
* @ingroup views_filter_handlers
*/
class views_handler_filter_node_status extends views_handler_filter {
function admin_summary() {
}
function operator_form() {
}
function query() {
$table = $this->ensure_my_table();
$this->query
->add_where($this->options['group'], "{$table}.status = 1 OR ({$table}.uid = ***CURRENT_USER*** AND ***CURRENT_USER*** <> 0) OR ***ADMINISTER_NODES*** = 1");
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
views_handler_filter_node_status | Filter by published status |