You are here

protected function MerciItemRestrictionsMigration::modifyMaxHours in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

File

merci_migrate/merci_restrictions.inc, line 61
Support for node destinations.

Class

MerciItemRestrictionsMigration

Code

protected function modifyMaxHours($value) {
  if (!empty($value)) {
    return '+' . $value . ' hours';
  }
  return $value;
}