views_handler_filter_node_status.inc
Same filename in other branches
Definition of views_handler_filter_node_status.
File
-
modules/
node/ views_handler_filter_node_status.inc
View source
<?php
/**
* @file
* Definition of views_handler_filter_node_status.
*/
/**
* Filter by published status.
*
* @ingroup views_filter_handlers
*/
class views_handler_filter_node_status extends views_handler_filter {
/**
* {@inheritdoc}
*/
public function admin_summary() {
}
/**
* {@inheritdoc}
*/
public function operator_form(&$form, &$form_state) {
}
/**
* {@inheritdoc}
*/
public function can_expose() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function query() {
$table = $this->ensure_my_table();
$this->query
->add_where_expression($this->options['group'], "{$table}.status = 1 OR ({$table}.uid = ***CURRENT_USER*** AND ***CURRENT_USER*** <> 0 AND ***VIEW_OWN_UNPUBLISHED_NODES*** = 1) OR ***BYPASS_NODE_ACCESS*** = 1");
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
views_handler_filter_node_status | Filter by published status. |