2012-04-27 19:13:44 +02:00
|
|
|
<?php
|
|
|
|
|
2018-11-06 03:08:06 +01:00
|
|
|
use Friendica\Content\Text\HTML;
|
2019-12-30 03:55:10 +01:00
|
|
|
use Friendica\DI;
|
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)
|
|
|
|
{
|
2019-12-28 02:48:47 +01:00
|
|
|
$r = q("SELECT `profile`.* , `user`.* FROM `profile`
|
2012-04-27 19:13:44 +02:00
|
|
|
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
2020-01-28 05:09:59 +01:00
|
|
|
WHERE `user`.`uid` = %s LIMIT 1",
|
2018-01-22 20:03:11 +01:00
|
|
|
intval($conf['uid'])
|
2012-04-27 19:13:44 +02:00
|
|
|
);
|
2018-01-22 20:03:11 +01:00
|
|
|
if (!count($r)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-27 19:13:44 +02:00
|
|
|
$a->profile = $r[0];
|
|
|
|
|
|
|
|
$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>";
|
2018-11-06 03:08:06 +01:00
|
|
|
$o .= _abs_url(HTML::contactBlock());
|
2020-01-18 20:52:33 +01:00
|
|
|
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['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;
|
|
|
|
}
|