Created
April 18, 2012 11:55
-
-
Save sebbdk/2413104 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Description | |
| * | |
| * Copyright 2012, Nodes.dk. All Rights Reserved. | |
| * | |
| * @author Kasper Jensen <kj@nodes.dk> | |
| * @created 03-13-2012 04:39 PM | |
| */ | |
| class MapPoint extends AppModel { | |
| public $belongsTo = array( | |
| 'Map' => array( | |
| 'className' => 'Maps.Map' | |
| ), | |
| 'MobileUser' => array( | |
| 'className' => 'Mobiles.MobileUser' | |
| ), | |
| 'MapPointType' => array( | |
| 'className' => 'Maps.MapPointType', | |
| 'join' => 'inner' | |
| ) | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment