entity_type.inc in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
Same filename in this branch
File
merci_line_item/includes/entity_type.incView source
<?php
class MerciLineItemType extends Entity {
protected function defaultLabel() {
if (property_exists($this, 'label')) {
return $this->label;
}
return "MERCI Line Item Type";
}
protected function defaultUri() {
$entity_info = $this
->entityInfo();
return array(
'path' => $entity_info['admin ui']['path'] . '/' . $this->id,
);
}
}
Classes
Name | Description |
---|---|
MerciLineItemType |