mirror of
https://github.com/humhub/humhub.git
synced 2025-02-24 19:23:21 +01:00
Clean and format
This commit is contained in:
parent
7dc10b345b
commit
0644f49148
@ -1,30 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use humhub\widgets\PanelMenu;
|
||||||
|
|
||||||
humhub\modules\directory\assets\DirectoryAsset::register($this);
|
humhub\modules\directory\assets\DirectoryAsset::register($this);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="panel panel-default" id="user-statistics-panel">
|
<div class="panel panel-default" id="user-statistics-panel">
|
||||||
|
|
||||||
<!-- Display panel menu widget -->
|
<!-- Display panel menu widget -->
|
||||||
<?= \humhub\widgets\PanelMenu::widget(['id' => 'user-statistics-panel']); ?>
|
<?= PanelMenu::widget(['id' => 'user-statistics-panel']); ?>
|
||||||
|
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<?= Yii::t('DirectoryModule.base', '<strong>Member</strong> stats'); ?>
|
<?= Yii::t('DirectoryModule.base', '<strong>Member</strong> stats'); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div class="knob-container" style="text-align: center; opacity: 0;">
|
<div class="knob-container" style="text-align:center; opacity:0;">
|
||||||
<strong><?= Yii::t('DirectoryModule.base', 'Total users'); ?></strong><br><br>
|
<strong><?= Yii::t('DirectoryModule.base', 'Total users'); ?></strong><br><br>
|
||||||
|
|
||||||
<input id="user-total" class="knob" data-width="120" data-height="140" data-displayprevious="true" data-readOnly="true"
|
<input id="user-total" class="knob" data-width="120" data-height="140" data-displayprevious="true" data-readOnly="true"
|
||||||
data-fgcolor="<?= $this->theme->variable('primary'); ?>" data-skin="tron"
|
data-fgcolor="<?= $this->theme->variable('primary'); ?>" data-skin="tron"
|
||||||
data-thickness=".2" value="<?= $statsTotalUsers; ?>"
|
data-thickness=".2" value="<?= $statsTotalUsers; ?>"
|
||||||
data-max="<?= $statsTotalUsers; ?>"
|
data-max="<?= $statsTotalUsers; ?>"
|
||||||
style="font-size: 25px !important; margin-top: 44px !important;">
|
style="font-size:25px !important; margin-top:44px !important;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div class="knob-container" style="text-align: center; opacity: 0;">
|
<div class="knob-container" style="text-align:center; opacity:0;">
|
||||||
<strong><?= Yii::t('DirectoryModule.base', 'Online right now'); ?></strong><br><br>
|
<strong><?= Yii::t('DirectoryModule.base', 'Online right now'); ?></strong><br><br>
|
||||||
|
|
||||||
<input id="user-online" class="knob" data-width="120" data-height="140" data-displayprevious="true" data-readOnly="true"
|
<input id="user-online" class="knob" data-width="120" data-height="140" data-displayprevious="true" data-readOnly="true"
|
||||||
@ -32,15 +35,14 @@ humhub\modules\directory\assets\DirectoryAsset::register($this);
|
|||||||
data-skin="tron"
|
data-skin="tron"
|
||||||
data-thickness=".2" value="<?= $statsUserOnline; ?>"
|
data-thickness=".2" value="<?= $statsUserOnline; ?>"
|
||||||
data-max="<?= $statsTotalUsers; ?>"
|
data-max="<?= $statsTotalUsers; ?>"
|
||||||
style="font-size: 25px !important; margin-top: 44px !important;">
|
style="font-size:25px !important; margin-top:44px !important;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<strong><?= Yii::t('DirectoryModule.base', 'Follows somebody'); ?>:</strong> <?php echo $statsUserFollow; ?>
|
<strong><?= Yii::t('DirectoryModule.base', 'Follows somebody'); ?>:</strong> <?= $statsUserFollow; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user