Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created July 13, 2012 18:01
Show Gist options
  • Save pedroelsner/3106338 to your computer and use it in GitHub Desktop.
Save pedroelsner/3106338 to your computer and use it in GitHub Desktop.
<?php
/**
* belongsTo associations
*
* @var array
*/
public $belongsTo = array(
'Conta' => array(
'className' => 'Conta',
'foreignKey' => 'conta_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Categoria' => array(
'className' => 'Categoria',
'foreignKey' => 'categoria_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
/**
* Aqui esta o segredo
*/
'Banco' => array(
'className' => 'Banco',
'foreignKey' => false,
'conditions' => 'Conta.banco_id = Banco.id',
'fields' => '',
'order' => ''
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment