friendica-addons/widgets/widget_friends.php

55 lines
1.2 KiB
PHP
Raw Normal View History

2011-09-25 10:56:03 +02:00
<?php
use Friendica\Content\Text\HTML;
2018-01-22 20:03:11 +01:00
use Friendica\Core\L10n;
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)
{
2018-01-15 14:15:33 +01:00
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
2011-09-25 10:56:03 +02:00
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
2018-01-22 20:03:11 +01:00
intval($conf['uid'])
2011-09-25 10:56:03 +02:00
);
2018-01-22 20:03:11 +01:00
if (!count($r)) {
return;
}
2011-09-25 10:56:03 +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
2011-09-25 10:56:03 +02:00
</style>";
$o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
2011-09-25 10:56:03 +02:00
return $o;
}