Thanks daddelkopp for the link, i´ve downloaded the latest svn snapshot from eqdkp+ 0.5 but the only thing is that this bridge only effects the login. Means if you authorized in Joomla you will get automaticly authorized in EQDKP.
What my component does is even a bit more. It runs complety into the joomla framework (so i can get direct access to the joomla variables) and there´s the problem with the version 1.5. As far as i know you can´t use the global php function, because the components will be loaded like a function. If this is correct this means i must recode every roster function and replace the global statement.
Example:
Normal Function in roster is like
- Code: Select all
function name (some variables)
{
global $db, $roster;
.
.
.
}
In Joomla 1.5 i have to recode it to
- Code: Select all
function name (some variables, $db, $roster)
{
.
.
.
}
and even the function call must be recoded:
Normal Roster Function:
- Code: Select all
$some_var = name(some variables);
Recoded to work in Joomla 1.5:
- Code: Select all
$some_var = name(some variables, $db, $roster);
If i had understand something wrong, please feel free to correct.
Nefuh