forked from friendica/deprecated-addons
Moved widgets and remote permissions to the deprecated addons
This commit is contained in:
parent
46ef41508e
commit
6d2a6408e8
55 changed files with 1762 additions and 0 deletions
48
widgets/widget_friends.php
Normal file
48
widgets/widget_friends.php
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
use Friendica\Content\Widget\ContactBlock;
|
||||
use Friendica\DI;
|
||||
use Friendica\Model\User;
|
||||
|
||||
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)
|
||||
{
|
||||
$owner = User::getOwnerDataById($conf['uid']);
|
||||
if (empty($owner)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$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(ContactBlock::getHTML($owner));
|
||||
$o .= "<a href='".DI::baseUrl()->get().'/profile/'.$owner['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
|
||||
return $o;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue