I am using cakephp and have a complicated relational database (encrypting nearly all fields using a cryptable behavior on my models implementing mcrypt). The specific problem I am having is that during a nested join query I am attempting to access a few specific fields and one is returning encrypted (should be decrypted on find). The query is as follows
Controller::loadModel('Student');
$this->set('deferreds', $this->Student->Core->Deferred->find('all', array(
'contain' => array('Core' => array('Student'))
)));
In my view I am accessing the 'deferreds' object like so:
<?php echo $this->Html->link($deferred['Core']['student_id'],
array('controller' => 'deferreds', 'action' => 'view', $deferred['Deferred']['id'])); ?>
Which works fine, returning decrypted data such as "12345678". But in the same view I access another field like so:
<?php echo $deferred['Core']['Student']['fName']; ?>
But it is returning encrypted data such as "dBgs+aqfsPQ=". Is there a better way to do such a query? My associated models are set up as so:
Student has one Core Core has many Deferred Deferred belongs to Core Core belongs to Student