]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friendheader.php
Replaced argv/argc with replacement functions
[friendica-addons.git] / widgets / widget_friendheader.php
index 20a84e253e8ca3a47278b595c03684e409694803..0f414beb5aa7027fd7c37cf40be26db5c9c49763 100644 (file)
@@ -1,30 +1,36 @@
 <?php
 
-function friendheader_widget_name() {
+use Friendica\Content\Text\HTML;
+use Friendica\Content\Widget\ContactBlock;
+use Friendica\DI;
+use Friendica\Model\User;
+
+function friendheader_widget_name()
+{
        return "Shows friends as a bar";
 }
-function friendheader_widget_help() {
+function friendheader_widget_help()
+{
        return "";
 }
 
-function friendheader_widget_args(){
-       return Array();
+function friendheader_widget_args()
+{
+       return [];
 }
 
-function friendheader_widget_size(){
-       return Array('780px','140px');
+function friendheader_widget_size()
+{
+       return ['780px','140px'];
 }
 
 
-function friendheader_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 friendheader_widget_content(&$a, $conf)
+{
+       $owner = User::getOwnerDataById($conf['uid']);
+       if (empty($owner)) {
+               return;
+       }
 
        $o = "";
        $o .= "<style>
@@ -34,10 +40,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>";
-       
+       $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;
 }