Page 1 of 1

List FEUs that have modified their information

Posted: Wed Aug 28, 2013 11:29 am
by urheat
I'm using FrontEnd User Management and Calguys User Directory. I would like to have a box on a front page, where would be a list of 3 users that have edited their profile recently. The point is, that I wish that this would affect to a feel that the site is active and alive!

Like this:

Lastest profile updates:
Tristan (12.3.2013)
Murgen (11.3.2013)
Flea (9.3.2013)

Re: List FEUs that have modified their information

Posted: Mon Sep 02, 2013 9:10 pm
by Rolf
And there isn't a sortby parameter?

Re: List FEUs that have modified their information

Posted: Tue Sep 03, 2013 10:46 am
by urheat
Rolf wrote:And there isn't a sortby parameter?
Yes there is, but is there a property like "Last modified timestamp". I don't find anything close to it from the module help (FEU/UserDirectory).

Re: List FEUs that have modified their information

Posted: Tue Sep 03, 2013 11:54 am
by Jo Morg
urheat wrote:Yes there is, but is there a property like "Last modified timestamp". I don't find anything close to it from the module help (FEU/UserDirectory).
I believe FEU doesn't have that feature "out of the box", but it should be relatively easy to implement through an UDT connected to the FEU event: OnUpdateUser
event manager help for Frontend User Management OnUpdateUser wrote:OnUpdateUser

An event generated when a user is updated (either by user themself or admin)
Parameters

name - The user name
id - The user id
You'd have to create a property for modified_datetime_stamp and set it when this event is triggered.
HTH

Re: List FEUs that have modified their information

Posted: Tue Oct 15, 2013 12:08 pm
by urheat
Jo Morg wrote:You'd have to create a property for modified_datetime_stamp and set it when this event is triggered.
HTH
Thanks Jo! Can you (or someone else) give a bit more information about the quoted thing.