friendica-addons/widgets/widget_friends.php

49 lines
1 KiB
PHP
Raw Normal View History

2011-09-25 10:56:03 +02:00
<?php
2021-07-24 08:21:38 +02:00
use Friendica\Content\Widget\ContactBlock;
use Friendica\DI;
2021-07-24 08:21:38 +02:00
use Friendica\Model\User;
2018-01-22 20:03:11 +01:00
function friends_widget_name()
{
2011-09-25 10:56:03 +02:00
return "Shows profile contacts";
}
2018-01-22 20:03:11 +01:00
function friends_widget_help()
{
2011-09-25 10:56:03 +02:00
return "";
}
2018-01-22 20:03:11 +01:00
function friends_widget_args()
{
2018-01-15 14:15:33 +01:00
return [];
2011-09-25 10:56:03 +02:00
}
2018-01-22 20:03:11 +01:00
function friends_widget_size()
{
return ['100%', '200px'];
}
2018-01-22 20:03:11 +01:00
function friends_widget_content(&$a, $conf)
{
2021-07-24 08:21:38 +02:00
$owner = User::getOwnerDataById($conf['uid']);
if (empty($owner)) {
2018-01-22 20:03:11 +01:00
return;
}
2011-09-25 10:56:03 +02:00
$o = "";
$o .= "<style>
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;}
2018-01-15 14:15:33 +01:00
2011-09-25 10:56:03 +02:00
</style>";
2021-07-24 08:21:38 +02:00
$o .= _abs_url(ContactBlock::getHTML($owner));
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$owner['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
2011-09-25 10:56:03 +02:00
return $o;
}