|
|
Drupal example source code file (views_handler_filter_node_status.inc)
The views_handler_filter_node_status.inc Drupal example source code<?php // $Id: views_handler_filter_node_status.inc,v 1.2.4.6 2010/11/18 00:43:18 merlinofchaos Exp $ /** * Filter by published status */ class views_handler_filter_node_status extends views_handler_filter { function admin_summary() { } function operator_form(&$form, &$form_state) { } 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 AND ***VIEW_OWN_UNPUBLISHED_NODES*** = 1) OR ***ADMINISTER_NODES*** = 1", array(), 'formula'); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_filter_node_status.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.