initial commit

This commit is contained in:
Marek Sebera 2013-01-22 23:12:03 +01:00
commit cd7b4628c3
56 changed files with 1829 additions and 0 deletions

8
app/Model/Item.php Normal file
View file

@ -0,0 +1,8 @@
<?php
class Item extends AppModel {
var $belongsTo = array('User');
var $order = "Item.barcode ASC";
}