]> git.mxchange.org Git - friendica-addons.git/commitdiff
Widgets: Replaced deprecated function
authorMichael <heluecht@pirati.ca>
Sat, 24 Jul 2021 06:21:38 +0000 (06:21 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 24 Jul 2021 06:21:38 +0000 (06:21 +0000)
widgets/widget_friendheader.php
widgets/widget_friends.php

index c403129069f880af168b876a3c854889fc13faac..0f414beb5aa7027fd7c37cf40be26db5c9c49763 100644 (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;
 }
index 08b7415c5a3a98a2b0ef508cc53f06c4ae4794bc..b04844e0383509a6e13a2013a97d1b742befa598 100644 (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;
 }