Ben kekinin modeli mimarisi ile ilgili bir sorun var.
Ben bir Kullanıcılar-Modeli ve Metaş-Modeli var. İşte modeli kodları:
Kullanıcılar:
<?php
class User extends AppModel {
var $name = 'User';
var $validate = array(
'username' => array('notempty'),
'email' => array('email'),
'password' => array('notempty')
);
var $displayField = 'username';
var $hasMany = array(
'Meta' => array(
'className' => 'Meta',
'foreignKey' => 'user_id'
)
);
}
?>
ve Metas Model:
<?php
class Meta extends AppModel {
var $name = 'Meta';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'user_id',
'required' => true
)
);
}
?>
So now the question is why do I not get the Meta data into the User array? Should I get it in the Auth object?
Veya nerede meta veri ile çalışabilir?
Bana yardım eder!
Have a nice Day! Dom