You are here

class uc_views_handler_filter_cart_current in Ubercart Views 6.3

Filter handler for the current cart.

Hierarchy

Expanded class hierarchy of uc_views_handler_filter_cart_current

1 string reference to 'uc_views_handler_filter_cart_current'
uc_views_views_data in views/uc_views.views.inc
Implementation of hook_views_data().

File

views/uc_views_handler_filter_cart_current.inc, line 6

View source
class uc_views_handler_filter_cart_current extends views_handler_filter_boolean_operator {
  function construct() {
    parent::construct();
    $this->value_value = t("Is the current user's cart");
  }
  function query() {
    $this
      ->ensure_my_table();
    $where = "{$this->table_alias}.{$this->real_field} ";
    if (empty($this->value)) {
      $where .= '<> "***CURRENT_CART_ID***"';
      if ($this->accept_null) {
        $where = '(' . $where . " OR {$this->table_alias}.{$this->real_field} IS NULL)";
      }
    }
    else {
      $where .= '= "***CURRENT_CART_ID***"';
    }
    $this->query
      ->add_where($this->options['group'], $where);
  }

}

Members