ファイルの再配置

This commit is contained in:
harukin
2018-11-15 13:21:14 +09:00
parent ea33ff77a0
commit 8cfa343088
26 changed files with 906 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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;
}