SnipeITAPI/readfrom.php

16 lines
281 B
PHP
Raw Normal View History

2016-05-16 15:43:49 -06:00
<?php
switch ($from) {
2016-05-16 15:43:49 -06:00
case 'accessories':
case 'accessory':
case 'acc':
$from = 'accessories';
break;
case 'consumables':
case 'consumable':
case 'con':
$from = 'consumables';
break;
default:
$from = 'assets';
}