mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* fixed misc issues Intellisense was nice enough to highlight. * mostly deprecated usage of uninitialized parameters * class GenericPage still needs a long, hard look and a refactor
47 lines
1.9 KiB
PHP
47 lines
1.9 KiB
PHP
<?php $this->brick('header'); ?>
|
|
|
|
<div class="main" id="main">
|
|
<div class="main-precontents" id="main-precontents"></div>
|
|
<div class="main-contents" id="main-contents">
|
|
|
|
<?php
|
|
$this->brick('announcement');
|
|
|
|
$this->brick('pageTemplate');
|
|
|
|
$this->brick('infobox');
|
|
?>
|
|
|
|
<script type="text/javascript">var g_pageInfo = { username: '<?=Util::jsEscape($this->user['displayName']); ?>' }</script>
|
|
|
|
<div class="text">
|
|
<div id="h1-icon-generic" class="h1-icon"></div>
|
|
<script type="text/javascript">
|
|
$WH.ge('h1-icon-generic').appendChild(Icon.createUser(<?=(is_numeric($this->user['avatar']) ? 2 : 1).', \''.($this->user['avatar'] ?: 'inv_misc_questionmark').'\''?>, 1, null, <?=User::isInGroup(U_GROUP_PREMIUM) ? 0 : 2; ?>, false, Icon.getPrivilegeBorder(<?=$this->user['sumRep']; ?>)));
|
|
</script>
|
|
<h1 class="h1-icon"><?=$this->name; ?></h1>
|
|
</div>
|
|
|
|
<h3 class="first"><?=Lang::user('publicDesc'); ?></h3>
|
|
<div id="description" class="left"><?php # must follow directly, no whitespaces allowed
|
|
if (!empty($this->user['description'])):
|
|
?>
|
|
<div id="description-generic"></div>
|
|
<script type="text/javascript">//<![CDATA[
|
|
Markup.printHtml('<?=$this->user['description']; ?>', "description-generic", { allow: Markup.CLASS_USER, roles: "<?=$this->user['userGroups']; ?>" });
|
|
//]]></script>
|
|
<?php
|
|
endif;
|
|
?></div>
|
|
<script type="text/javascript">us_addDescription()</script>
|
|
|
|
<div id="roster-status" class="profiler-message clear" style="display: none"></div>
|
|
|
|
<?php $this->brick('lvTabs', ['relTabs' => true]); ?>
|
|
|
|
<div class="clear"></div>
|
|
</div><!-- main-contents -->
|
|
</div><!-- main -->
|
|
|
|
<?php $this->brick('footer'); ?>
|