[RSS Feed/News] Finding users that posted in a specific period of time

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
I decided to make a little add-on that will show me a list of users that were not active within the last 30 days, but were active within the last 60 days.
An idea is to reply to those members threads or to send PMs (depending on users options) to pull them back into activity.

That was easy.

PHP:

Code:
        $time = time();
        $monthAgo = $time - 2592000;
        $twoMonthsAgo = $monthAgo - 2592000;

        $finder = $this->finder('\XF:User');
        $finder...

Read more

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom