У меня есть модель с именем Voicenote
, у которой есть отношение belongsTo
с Fonyker
и ActivitySource
.Когда я делаю следующее:
function admin_index(){
$this->layout = 'admin';
$this->Voicenote->recursive = 2;
$fields = array(
'Voicenote.id',
'Voicenote.title',
'Voicenote.created',
'Voicenote.duration',
'Voicenote.public',
);
$this->paginate = array(
'fields' => $fields,
'limit' => 20,
'order' => array('id' => 'ASC')
);
$result = $this->paginate('Voicenote');
pr($result);
$this->set('result', $result);
}
Полученный массив поставляется без Fonyker
и ActivitySource
, какие-либо идеи о том, что может происходить?
[0] => Array
(
[Voicenote] => Array
(
[id] => 1
[title] => CFRFA5KBLPJZP79B2PG8XH8DFSMB8G
[created] => 2011-03-09 00:00:00
[duration] => 23868
[public] => 0
)
[Fonyker] => Array
(
)
[ActivitySource] => Array
(
)
Также, когда я пытаюсь использоватьunbindModel()
и удалите все, кроме Fonyker
и ActivitySource
, они даже не отображаются как пустые массивы.