]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Remove sprintf with translations
[friendica-addons.git] / widgets / widget_friends.php
index fc7d7aa9846418c012b43d46251e3ed0ee9ea6ee..b5a078861e949f0229f63bd26f83f98b40e8ccc6 100644 (file)
@@ -1,37 +1,53 @@
 <?php
 
-function friends_widget_name() {
+use Friendica\Core\L10n;
+
+function friends_widget_name()
+{
        return "Shows profile contacts";
 }
-function friends_widget_help() {
+
+function friends_widget_help()
+{
        return "";
 }
 
-function friends_widget_args(){
-       return Array();
+function friends_widget_args()
+{
+       return [];
+}
+
+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` 
+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'])
+               intval($conf['uid'])
        );
-       if(!count($r)) return;
+
+       if (!count($r)) {
+               return;
+       }
+       
        $a->profile = $r[0];
 
        $o = "";
        $o .= "<style>
-               .f9k_widget {font-size: 0.8em;}
-               .f9k_widget #contact-block { overflow: hidden; height: auto; }
-               .f9k_widget .contact-block-h4 { float: left; margin: 0px; }
-               .f9k_widget .allcontact-link { float: right; margin: 0px; }
-               .f9k_widget .contact-block-content { clear:both; }
-               .f9k_widget .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
-               
+               body {font-size: 0.8em; margin: 0px; padding: 0px;}
+               #contact-block { overflow: hidden; height: auto; }
+               .contact-block-h4 { float: left; margin: 0px; }
+               .allcontact-link { float: right; margin: 0px; }
+               .contact-block-content { clear:both; }
+               .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 Friendika!') ."</a>";
+       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
        return $o;
 }