Thank you for the quick reply!
It was still a bit difficult to find how to do what I wanted with my poor php, but I succeded!
Here is the way to proceed for others who would like to do the same :
- Display uddeIM Component in a module or inside an article thanks to an extension like Include Component or Components Anywhere (with a menu item giving the compose message view)
- modify components/com_uddeim/includes.php line 811 :
Code:
$pathtosite = uddeIMgetPath('live_site');
becomes
Code:
$pathtosite = $url = htmlspecialchars($_SERVER['HTTP_REFERER']);
(Getting current page URL (JURI::current) doesnt work, because it gives index.php/component/uddeim/?task=save&Itemid=0, so this code gets the previous page URL.)
It's probably not the best solution, but it does the trick for me: users can write an article, then send it manually to the validators they choose (and not an automatical notifcation based on groups, like all what I found on the Joomla extension directory).
It would be great to add natively this feature in future releases (so as a module with the compose view...).