56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Friendica\Content\Text\HTML;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\DI;
|
|
|
|
function friends_widget_name()
|
|
{
|
|
return "Shows profile contacts";
|
|
}
|
|
|
|
function friends_widget_help()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
function friends_widget_args()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
function friends_widget_size()
|
|
{
|
|
return ['100%', '200px'];
|
|
}
|
|
|
|
|
|
function friends_widget_content(&$a, $conf)
|
|
{
|
|
$r = q("SELECT `profile`.* , `user`.* FROM `profile`
|
|
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
WHERE `user`.`uid` = %s LIMIT 1",
|
|
intval($conf['uid'])
|
|
);
|
|
|
|
if (!count($r)) {
|
|
return;
|
|
}
|
|
|
|
$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;}
|
|
|
|
</style>";
|
|
$o .= _abs_url(HTML::contactBlock());
|
|
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
|
|
return $o;
|
|
}
|