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:
Read more
ادامه مطلب...
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
ادامه مطلب...