<?php
// $Id: views_handler_argument_group_by_numeric.inc,v 1.1.2.2 2009/11/23 20:43:06 merlinofchaos Exp $

/**
 * Simple handler for arguments using group by.
 */
class views_handler_argument_group_by_numeric extends views_handler_argument  {
  function query($group_by = FALSE) {
    $this->ensure_my_table();
    $placeholder = empty($this->definition['numeric']) ? "'%s'" : '%d';
    $field = $this->get_field();

    $this->query->add_having(0, "$field = $placeholder", $this->argument);
  }

  function ui_name() {
    return $this->get_field(parent::ui_name());
  }
}
