]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friendheader.php
Use short form array syntax everywhere
[friendica-addons.git] / widgets / widget_friendheader.php
index 20a84e253e8ca3a47278b595c03684e409694803..f9a8aceca66b12ad9f17feb89060b18848153b96 100644 (file)
@@ -8,17 +8,17 @@ function friendheader_widget_help() {
 }
 
 function friendheader_widget_args(){
-       return Array();
+       return [];
 }
 
 function friendheader_widget_size(){
-       return Array('780px','140px');
+       return ['780px','140px'];
 }
 
 
 function friendheader_widget_content(&$a, $conf){
 
-       $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
+       $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'])
@@ -34,10 +34,10 @@ function friendheader_widget_content(&$a, $conf){
                .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']."' target=new>". t('Get added to this list!') ."</a>";
-       
+
        return $o;
 }