]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Merge branch '3.6-rc'
[friendica-addons.git] / widgets / widget_friends.php
index 195667e89bb4962612950534e150f8a78ee567e8..0d218b13604e48fc8fe69141594c5fc67c52fb96 100644 (file)
@@ -1,29 +1,40 @@
 <?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 Array('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` 
+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 = "";
@@ -37,6 +48,6 @@ function friends_widget_content(&$a, $conf){
                
        </style>";
        $o .= _abs_url(contact_block());
-       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendica!') ."</a>";
+       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
        return $o;
 }