map/system/connection update functionality (backend)

This commit is contained in:
exodus4d
2015-02-28 14:08:24 +01:00
parent 503a31c48e
commit 417961cd1e
54 changed files with 7173 additions and 337 deletions

View File

@@ -0,0 +1,24 @@
<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 28.02.15
* Time: 11:57
*/
namespace Model;
class UserMapModel extends BasicModel {
protected $table = 'user_map';
protected $fieldConf = array(
'mapId' => array(
'belongs-to-one' => 'Model\MapModel'
)
);
}