2011-09-25 04:56:03 -04:00
|
|
|
<?php
|
|
|
|
|
2021-07-24 02:21:38 -04:00
|
|
|
use Friendica\Content\Widget\ContactBlock;
|
2019-12-29 21:55:10 -05:00
|
|
|
use Friendica\DI;
|
2021-07-24 02:21:38 -04:00
|
|
|
use Friendica\Model\User;
|
2018-01-22 14:03:11 -05:00
|
|
|
|
|
|
|
function friends_widget_name()
|
|
|
|
{
|
2011-09-25 04:56:03 -04:00
|
|
|
return "Shows profile contacts";
|
|
|
|
}
|
2018-01-22 14:03:11 -05:00
|
|
|
|
|
|
|
function friends_widget_help()
|
|
|
|
{
|
2011-09-25 04:56:03 -04:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2018-01-22 14:03:11 -05:00
|
|
|
function friends_widget_args()
|
|
|
|
{
|
2018-01-15 08:15:33 -05:00
|
|
|
return [];
|
2011-09-25 04:56:03 -04:00
|
|
|
}
|
|
|
|
|
2018-01-22 14:03:11 -05:00
|
|
|
function friends_widget_size()
|
|
|
|
{
|
|
|
|
return ['100%', '200px'];
|
2011-10-19 05:43:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-22 14:03:11 -05:00
|
|
|
function friends_widget_content(&$a, $conf)
|
|
|
|
{
|
2021-07-24 02:21:38 -04:00
|
|
|
$owner = User::getOwnerDataById($conf['uid']);
|
|
|
|
if (empty($owner)) {
|
2018-01-22 14:03:11 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-25 04:56:03 -04:00
|
|
|
$o = "";
|
|
|
|
$o .= "<style>
|
2011-10-19 05:43:45 -04:00
|
|
|
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 08:15:33 -05:00
|
|
|
|
2011-09-25 04:56:03 -04:00
|
|
|
</style>";
|
2021-07-24 02:21:38 -04: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 04:56:03 -04:00
|
|
|
return $o;
|
|
|
|
}
|