2012-04-27 19:13:44 +02:00
|
|
|
<?php
|
|
|
|
|
2018-11-06 03:08:06 +01:00
|
|
|
use Friendica\Content\Text\HTML;
|
2021-07-24 08:21:38 +02:00
|
|
|
use Friendica\Content\Widget\ContactBlock;
|
2019-12-30 03:55:10 +01:00
|
|
|
use Friendica\DI;
|
2021-07-24 08:21:38 +02:00
|
|
|
use Friendica\Model\User;
|
2018-01-22 20:03:11 +01:00
|
|
|
|
|
|
|
function friendheader_widget_name()
|
|
|
|
{
|
2012-04-27 19:13:44 +02:00
|
|
|
return "Shows friends as a bar";
|
|
|
|
}
|
2018-01-22 20:03:11 +01:00
|
|
|
function friendheader_widget_help()
|
|
|
|
{
|
2012-04-27 19:13:44 +02:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2018-01-22 20:03:11 +01:00
|
|
|
function friendheader_widget_args()
|
|
|
|
{
|
2018-01-15 14:15:33 +01:00
|
|
|
return [];
|
2012-04-27 19:13:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 20:03:11 +01:00
|
|
|
function friendheader_widget_size()
|
|
|
|
{
|
2018-01-15 14:15:33 +01:00
|
|
|
return ['780px','140px'];
|
2012-04-27 19:13:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-22 20:03:11 +01:00
|
|
|
function friendheader_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;
|
|
|
|
}
|
|
|
|
|
2012-04-27 19:13:44 +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
|
|
|
|
2012-04-27 19:13:44 +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']."' target=new>". DI::l10n()->t('Get added to this list!') ."</a>";
|
2018-01-15 14:15:33 +01:00
|
|
|
|
2012-04-27 19:13:44 +02:00
|
|
|
return $o;
|
|
|
|
}
|