Functions moved to HTML

update function calls to new class
This commit is contained in:
Adam Magness 2018-11-05 21:08:06 -05:00
parent 98895c5356
commit 90b1ef56f7
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<?php <?php
use Friendica\Content\Text\HTML;
use Friendica\Core\L10n; use Friendica\Core\L10n;
function friendheader_widget_name() function friendheader_widget_name()
@ -45,7 +46,7 @@ function friendheader_widget_content(&$a, $conf)
.contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;} .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
</style>"; </style>";
$o .= _abs_url(contact_block()); $o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>"; $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
return $o; return $o;

View File

@ -1,5 +1,6 @@
<?php <?php
use Friendica\Content\Text\HTML;
use Friendica\Core\L10n; use Friendica\Core\L10n;
function friends_widget_name() function friends_widget_name()
@ -47,7 +48,7 @@ function friends_widget_content(&$a, $conf)
.contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;} .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
</style>"; </style>";
$o .= _abs_url(contact_block()); $o .= _abs_url(HTML::contactBlock());
$o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>"; $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
return $o; return $o;
} }