Hi there, I am developing a backend component, which displays a table with some users ids.
In the
MVC tutorial
, it talks about how to add a link to a checkbox which will redirect the admin to the user's profile when he/she clicks edit.
[code:1]$link = JRoute::_( 'index.php?option=com_hello>controller=hello>task=edit>cid[]='. $row->id );[/code:1]
My question is: How can I instead, redirect to the cb user-editor instead?
Thanks for your help!