if (DBA::isResult($contact)) {
DI::page()['aside'] = "";
- Model\Profile::load($a, "", 0, Model\Contact::getDetailsByURL($contact["url"]));
+ Model\Profile::load($a, "", Model\Contact::getDetailsByURL($contact["url"]));
}
} else {
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['self' => true, 'uid' => $uid]);
if (DBA::isResult($contact)) {
$a->data['contact'] = $contact;
- Model\Profile::load($a, "", 0, Model\Contact::getDetailsByURL($contact["url"]));
+ Model\Profile::load($a, "", Model\Contact::getDetailsByURL($contact["url"]));
}
$warning = DI::l10n()->t('<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working.');
}
}
- Profile::load($a, $nick, 0, $profiledata);
+ Profile::load($a, $nick, $profiledata);
}
function display_fetchauthor($a, $item)
$profiledata = Contact::getDetailsByURL($ret['url']);
if ($profiledata) {
- Profile::load($a, '', 0, $profiledata, false);
+ Profile::load($a, '', $profiledata, false);
}
if ($gcontact_id <> 0) {
]);
DI::page()['aside'] = '';
- Profile::load($a, '', 0, Contact::getDetailsByURL($contact['url']));
+ Profile::load($a, '', Contact::getDetailsByURL($contact['url']));
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]);
*
* @param App $a
* @param string $nickname string
- * @param int $profile_id int
* @param array $profiledata array
* @param boolean $show_connect Show connect link
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
- public static function load(App $a, $nickname, $profile_id = 0, array $profiledata = [], $show_connect = true)
+ public static function load(App $a, $nickname, array $profiledata = [], $show_connect = true)
{
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
}
DI::page()['aside'] = "";
- Model\Profile::load($app, "", 0, Model\Contact::getDetailsByURL($contact["url"]));
+ Model\Profile::load($app, "", Model\Contact::getDetailsByURL($contact["url"]));
$total = Model\GContact::countAllFriends(local_user(), $cid);
$profiledata = Model\Contact::getDetailsByURL($contact['url']);
- Model\Profile::load($a, '', 0, $profiledata, true);
+ Model\Profile::load($a, '', $profiledata, true);
$o .= Model\Contact::getPostsFromUrl($contact['url'], true, $update);
}
$profiledata['remoteconnect'] = DI::baseUrl() . '/follow?url=' . urlencode($profiledata['url']);
}
- Model\Profile::load($a, '', 0, $profiledata, true);
+ Model\Profile::load($a, '', $profiledata, true);
$o .= Model\Contact::getPostsFromUrl($contact['url']);
}
if ((local_user()) && ($parameters['action'] ?? '') === 'view') {
// A logged in user views a profile of a user
$nickname = $a->user['nickname'];
- $profile = $parameters['profile'];
} elseif (empty($parameters['action'])) {
// Show the profile hovercard
$nickname = $parameters['profile'];
- $profile = 0;
} else {
throw new NotFoundException(DI::l10n()->t('No profile'));
}
- Profile::load($a, $nickname, $profile);
+ Profile::load($a, $nickname);
$page = DI::page();
if (isset($parameters['nick'])) {
// Get infos about a specific nick (public)
$which = $parameters['nick'];
- $profile = 0;
} elseif (local_user() && isset($parameters['profile']) && DI::args()->get(2) == 'view') {
// view infos about a known profile (needs a login)
$which = $a->user['nickname'];
- $profile = $parameters['profile'];
} else {
System::jsonError(403, 'Authentication required');
exit();
}
- Profile::load($a, $which, $profile);
+ Profile::load($a, $nickname);
$json_info = [
'addr' => $a->profile['addr'],