function serviceProfileBlockJoined ($iProfileId) {
$iProfileId = (int)$iProfileId;
$aProfile = getProfileInfo($iProfileId);
bx_import ('PageMain', $this->_aModule);
$o = new BxEventsPageMain ($this);
$o->sUrlStart = getProfileLink($aProfile['ID']) . '?';
return $o->ajaxBrowse(
'joined',
$this->_oDb->getParam('bx_events_perpage_profile'),
array(),
process_db_input ($aProfile['NickName'], BX_TAGS_NO_ACTION, BX_SLASHES_NO_ACTION),
true,
false
);
}
in BxevenventsModulephp
I would like to know how to change this code to show only future events and the order of the day
thank you
