You are here

function merci_line_item_handler_field_edit_quantity::render in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

merci_line_item/includes/views/handlers/merci_line_item_handler_field_edit_quantity.inc, line 24
Field handler to present a form field to change quantity of a line item. It's a dummy handler, most part of the implementation is done via post render hook.

Class

merci_line_item_handler_field_edit_quantity
Field handler to present a field to change quantity of a line item.

Code

function render($values) {
  return '<!--form-item-' . $this->options['id'] . '--' . $this->view->row_index . '-->';
}