Lise and Frontend Users [[Solved]]

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Post Reply
User avatar
magallo
Forum Members
Forum Members
Posts: 105
Joined: Thu Mar 24, 2011 12:37 am

Lise and Frontend Users [[Solved]]

Post by magallo »

This is a solution I found useful in reply to this older topic:
viewtopic.php?f=7&t=78127

The current LISE 1.3.1 in CMSMS 2.2.9.1 doesn't allow you to create a FEU field to select existing users and display them in a dropdown so I had to make a UDT and inside I added:

Code: Select all

$feu = cge_utils::get_module('FrontEndUsers');
$feusers = $feu->GetFullUsersInGroup(1);
$list = array();
foreach ($feusers as &$user) {
    $list[$user['id']] = $user['username'];
}
return $list;
Hope this helps others.
Post Reply

Return to “Modules/Add-Ons”