This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
theme/view/theme/plusfuture/php/widget_userlogomenu.php
2018-11-16 17:36:57 +09:00

17 lines
385 B
PHP

<?php
function widget_userlogomenu($args) {
$channel = channelx_by_n(\App::$profile_uid);
$o = replace_macros(get_markup_template('userlogomenu.tpl'), array(
'$sitelocation' => $site['$sitelocation'],
'$banner' => $channel['channel_name'],
'$channel' => $channel['channel_address'],
'$avatar' => $channel['xchan_photo_s'],
));
return $o;
}