Hi,
I have some field as name and surname crypted in database, and, if is set session var with password, I have to
decrypt it with mcrypt function.
where I can modify record view value for all result set?
I try to work on function block__before_result_list with
$app =& Dataface_Application::getInstance(); // reference to Dataface_Application object
$query =& $app->getQuery();
$records =& df_get_records_array($query['-table'], $query);
foreach ($records as $record)
{
$record->htmlValue ("Nome",$record->val("Nome")."criptato");
}
but don't work.
Thanks for help!!