]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Replaced argv/argc with replacement functions
[friendica-addons.git] / widgets / widget_friends.php
index 25e20180186665a4afd1bf8d1e7b9142feba0833..b04844e0383509a6e13a2013a97d1b742befa598 100644 (file)
@@ -1,31 +1,37 @@
 <?php
 
-function friends_widget_name() {
+use Friendica\Content\Widget\ContactBlock;
+use Friendica\DI;
+use Friendica\Model\User;
+
+function friends_widget_name()
+{
        return "Shows profile contacts";
 }
-function friends_widget_help() {
+
+function friends_widget_help()
+{
        return "";
 }
 
-function friends_widget_args(){
+function friends_widget_args()
+{
        return [];
 }
 
-function friends_widget_size(){
-       return ['100%','200px'];
+function friends_widget_size()
+{
+       return ['100%', '200px'];
 }
 
 
-function friends_widget_content(&$a, $conf){
-
-       $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
-                       LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
-                       WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
-                       intval($conf['uid'])
-       );
-       if(!count($r)) return;
-       $a->profile = $r[0];
-
+function friends_widget_content(&$a, $conf)
+{
+       $owner = User::getOwnerDataById($conf['uid']);
+       if (empty($owner)) {
+               return;
+       }
+       
        $o = "";
        $o .= "<style>
                body {font-size: 0.8em; margin: 0px; padding: 0px;}
@@ -36,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(contact_block());
-       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". 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;
 }