|
|
Drupal example source code file (views_handler_filter_user_current.inc)
The views_handler_filter_user_current.inc Drupal example source code<?php // $Id: views_handler_filter_user_current.inc,v 1.2 2009/09/15 16:18:38 merlinofchaos Exp $ /** * Filter handler for the current user */ class views_handler_filter_user_current extends views_handler_filter_boolean_operator { function construct() { parent::construct(); $this->value_value = t('Is the logged in user'); } function query() { $this->ensure_my_table(); $where = "$this->table_alias.$this->real_field "; if (empty($this->value)) { $where .= '<> ***CURRENT_USER***'; if ($this->accept_null) { $where = '(' . $where . " OR $this->table_alias.$this->real_field IS NULL)"; } } else { $where .= '= ***CURRENT_USER***'; } $this->query->add_where($this->options['group'], $where); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_filter_user_current.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.