I want to display user ID in a column of a MENU USER LIST, I somehow thought I could manage to do so by making a delimiter field with this code:
<?php
require_once(JPATH_SITE.'/components/com_jsn/helpers/helper.php');
$id = JFactory::getApplication()->input->getInt('id', 0);
echo $id;
$user=new JsnUser($id);
echo $user->getLink();
?>
It didn't work, so I'm wondering whats the right way to do this?
Thanks.