Hi,
I am using cakephp calendar helper in one of my applications, i am also using jquery to implement ajax functionality by creating links like:
<?php echo $report->show_customized($my_security_actions,$audience['Audience']['title'],"Audience","audience_edit",$audience['Audience']['id']); ?>
Where $report is also a helper.
I want to convert event detail links in the same format, currently they are like:
$data[$day] = '<a href="pms/index.php/Events/view_event/' . $v['Event']['id'] . '">' . $v['Event']['name'] . '</a>';
if they were in ctp files, it was quite easy to do, but they are in controller, so, m not able to do it. is there a way to convert those links into above format?
Thanks in advance!!!
kuldeep c. kaundal.