Zeruell / ppx-raidplaner

Automatically exported from code.google.com/p/ppx-raidplaner
0 stars 0 forks source link

Synchronization improvement with PHPBB3 #39

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In my guild (forum) when player leaves guild, his account in forum is 
deactivated (not deleted), to prevent problems with posts written by that user.
Deactivated users still have access to raidplanner.

Solution will be cron job or on-login check if user is still active.

To do this you need to check users table column : "user_type"

Values of this column are :
<code language="php">
define('USER_NORMAL', 0);
define('USER_INACTIVE', 1);
define('USER_IGNORE', 2);
define('USER_FOUNDER', 3);

0 is for normal users
1 is for deactivated/inactive users
2 is for bots and anonymous user
3 is founder user
</code>

Also this could update group membership like :
forum group - officer
raidplanner group - raidleader

On first login it works fine, but after group update on forum, it needs to be 
changed manually in raidplanner.
Currently i use simple self written script to do this (It's executed on button 
click and it's too simple to do this automaticly). Would be nice to implement 
this in raidplanner.

Original issue reported on code.google.com by Osipi...@gmail.com on 25 Mar 2013 at 5:33

GoogleCodeExporter commented 9 years ago
This will be integrated in 0.9.8.

Original comment by arne.cl...@gmail.com on 26 Mar 2013 at 6:27

GoogleCodeExporter commented 9 years ago

Original comment by arne.cl...@gmail.com on 26 Mar 2013 at 6:28

GoogleCodeExporter commented 9 years ago
Implemented in the 0.9.8 development branch

Original comment by arne.cl...@gmail.com on 21 Apr 2013 at 3:08

GoogleCodeExporter commented 9 years ago

Original comment by arne.cl...@gmail.com on 26 May 2013 at 9:40