Merge pull request #1147 from annando/deprecated

Widgets: Replaced deprecated function
This commit is contained in:
Tobias Diekershoff 2021-07-24 10:37:08 +02:00 committed by GitHub
commit 42454b3cf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 23 deletions

View File

@ -1,7 +1,9 @@
<?php
use Friendica\Content\Text\HTML;
use Friendica\Content\Widget\ContactBlock;
use Friendica\DI;
use Friendica\Model\User;
function friendheader_widget_name()
{
@ -25,17 +27,11 @@ function friendheader_widget_size()
function friendheader_widget_content(&$a, $conf)
{
$r = q("SELECT `profile`.* , `user`.* FROM `profile`
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %s LIMIT 1",
intval($conf['uid'])
);
if (!count($r)) {
$owner = User::getOwnerDataById($conf['uid']);
if (empty($owner)) {
return;
}
$a->profile = $r[0];
$o = "";
$o .= "<style>
body {font-size: 0.8em; margin: 0px; padding: 0px;}
@ -46,8 +42,8 @@ function friendheader_widget_content(&$a, $conf)
.contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
</style>";
$o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."' target=new>". DI::l10n()->t('Get added to this list!') ."</a>";
$o .= _abs_url(ContactBlock::getHTML($owner));
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$owner['nickname']."' target=new>". DI::l10n()->t('Get added to this list!') ."</a>";
return $o;
}

View File

@ -1,8 +1,8 @@
<?php
use Friendica\Content\Text\HTML;
use Friendica\Core\L10n;
use Friendica\Content\Widget\ContactBlock;
use Friendica\DI;
use Friendica\Model\User;
function friends_widget_name()
{
@ -27,18 +27,11 @@ function friends_widget_size()
function friends_widget_content(&$a, $conf)
{
$r = q("SELECT `profile`.* , `user`.* FROM `profile`
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %s LIMIT 1",
intval($conf['uid'])
);
if (!count($r)) {
$owner = User::getOwnerDataById($conf['uid']);
if (empty($owner)) {
return;
}
$a->profile = $r[0];
$o = "";
$o .= "<style>
body {font-size: 0.8em; margin: 0px; padding: 0px;}
@ -49,7 +42,7 @@ function friends_widget_content(&$a, $conf)
.contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
</style>";
$o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
$o .= _abs_url(ContactBlock::getHTML($owner));
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$owner['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
return $o;
}