First pass at implementing a new lock tracking mechnism. Not complete, but the basics seem to work

git-svn-id: file:///svn-source/pmgr/branches/v0.3_work@1038 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
Abijah
2014-03-03 03:25:29 +00:00
parent 8249ecc5cd
commit e08afdd8b1
9 changed files with 597 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
<?php
class LocksUnit extends AppModel {
var $primaryKey = false;
var $belongsTo = array(
'Lock',
'Unit',
);
}
?>