Skip to content

Instantly share code, notes, and snippets.

@sebbdk
Created April 18, 2012 11:55
Show Gist options
  • Select an option

  • Save sebbdk/2413104 to your computer and use it in GitHub Desktop.

Select an option

Save sebbdk/2413104 to your computer and use it in GitHub Desktop.
<?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