SnipeITAPI/readfrom.php
2016-05-16 15:43:49 -06:00

18 lines
308 B
PHP

<?php
$from = 'assets';
switch ($_GET['from']) {
case 'accessories':
case 'accessory':
case 'acc':
$from = 'accessories';
break;
case 'consumables':
case 'consumable':
case 'con':
$from = 'consumables';
break;
default:
$from = 'assets';
}