When I see code like this, which is a page block on the Profile page :
$iPID = $this->oProfileGen->_iProfileID;
$sNickName = $this->oProfileGen->_aProfile['NickName'];
if ($iPID) {
$aParams = array();
$aParams['PID'] = $iPID;
$aParams['DisplayPagination'] = 1;
$aParams['DisplayLink'] = 1;
return BxDolService::call('photos', 'profile_photo_block', array($aParams), 'Search'); }
What does that last line actually call? I look at the boonex photos module, and there's no function named 'profile_photo_block'. Obviously, this is the code that displays the relevant photo, but I'm having a hard time mapping the Content of a page block to the appropriate method.
Thx,
Tac
