No actual there are no plans to bring it up to Joomla 1.5. This is more complicated as for 1.0.xx, because of the new framework that is used in Joomla 1.5.
To change the authorization is not so hard.
Just open the file login.php in the directory /components/com_wowroster/lib and look at the lines start from 69 to 79. These lines are for authorizing joomla users in roster. So you only need to change the joomla usertype.
To change all Authors to become Guild status in Roster just edit line 77 from:
- Code: Select all
elseif ((string)$my->usertype == "Registered") {
to:
- Code: Select all
elseif ((string)$my->usertype == "Authors") {
Now all users with status "author" in joomla, will become automaticly "guild" status in roster.
Maybe you should replace "Authors" by "Author" i currently didn´t know all usertypes from joomla. But you can create a sample user with status "author" and then if you have any php skill, you can look in the $my array from joomla. There you find all data.