You are here

public function MerciLineItemTypeController::create in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Implements EntityAPIControllerInterface.

Overrides EntityAPIController::create

File

merci_line_item/includes/entity_type.controller.inc, line 8

Class

MerciLineItemTypeController
The controller class for line items contains methods for the line item CRUD operations. The load method is inherited from the default controller.

Code

public function create(array $values = array()) {
  $values += array(
    'label' => '',
  );
  return parent::create($values);
}