1
0
www.mikescher.com/www/protected/views/msmain/admin.php

183 lines
3.7 KiB
PHP
Raw Normal View History

2014-06-06 19:31:23 +02:00
<?php
/* @var $this MsMainController */
?>
<?php
2014-06-10 13:27:17 +02:00
$this->pageTitle = 'Admin Panel - ' . Yii::app()->name;
2014-06-10 13:27:17 +02:00
$this->breadcrumbs =
[
'Admin',
];
2014-06-06 19:31:23 +02:00
?>
<div class="container">
<?php echo MsHtml::pageHeader("Adminstration", "mikescher.de"); ?>
<div class="row">
<div class="span3">
<?php
echo MsHtml::lead('Logs');
2014-06-06 19:31:23 +02:00
echo MsHtml::stackedTabs(
[
['label' => 'Show', 'url' => '/log'],
['label' => 'Manage', 'url' => '/log/admin'],
['label' => 'Create', 'url' => '/log/create'],
2014-06-06 19:31:23 +02:00
]
); ?>
</div>
<div class="span3">
<?php
echo MsHtml::lead('Programs');
2014-06-06 19:31:23 +02:00
echo MsHtml::stackedTabs(
[
['label' => 'Show', 'url' => '/programs'],
['label' => 'Manage', 'url' => '/programs/admin'],
['label' => 'Create', 'url' => '/programs/create'],
2014-06-06 19:31:23 +02:00
]
); ?>
</div>
<div class="span3">
2014-06-06 19:31:23 +02:00
<?php
echo MsHtml::lead('ProgramUpdates');
2014-06-06 19:31:23 +02:00
echo MsHtml::stackedTabs(
[
['label' => 'Show', 'url' => '/programupdates'],
['label' => 'Manage', 'url' => '/programupdates/admin'],
['label' => 'Create', 'url' => '/programupdates/create'],
2014-06-06 19:31:23 +02:00
]
); ?>
</div>
2014-07-19 18:25:35 +02:00
<div class="span3">
2014-06-06 19:31:23 +02:00
<?php
2014-07-19 18:25:35 +02:00
echo MsHtml::lead('BlogPosts');
2014-06-06 19:31:23 +02:00
echo MsHtml::stackedTabs(
[
2014-07-19 18:25:35 +02:00
['label' => 'Show', 'url' => '/blog'],
['label' => 'Manage', 'url' => '/blog/admin'],
['label' => 'Create', 'url' => '/blog/create'],
2014-06-06 19:31:23 +02:00
]
); ?>
</div>
</div>
<div class="well well-small">
<?php
$egh = $egh = (new ExtendedGitGraph('Mikescher'))->loadFinishedData();
?>
<h2>ExtendedGitGraph</h2>
<hr>
<strong>Last Update: </strong> <?php echo $egh['creation']->format('d.m.Y H:i'); ?> <br>
<strong>Repositories: </strong> <?php echo $egh['repos']; ?> <br>
<strong>Commits: </strong> <?php echo $egh['total']; ?> <br>
<br><br>
<a class="btn btn-primary" href="?do_egh_update=1"> Update </a>
</div>
<div class="well well-small">
<h2>Linklist</h2>
<hr>
<ul>
<li><a href="https://mikescher-de.disqus.com">Disqus Admin Panel</a></li>
<li><a href="https://www.strato.de/apps/CustomerService">Strato Customer Service</a></li>
<li><a href="http://v1.mikescher.de">Mikescher.de Wayback (v1)</a></li>
<li><a href="http://v2.mikescher.de">Mikescher.de Wayback (v2)</a></li>
<li><a href="http://v3.mikescher.de">Mikescher.de Wayback (v3)</a></li>
</ul>
</div>
<div class="well well-small">
<h2>Program of the day</h2>
<hr>
<?php
$data = array();
$now = new DateTime();
for ($i = 0; $i < 100; $i++) {
$data[] =
[
'Date' => $now->format('d.m.Y :: D'),
'Name' => ProgramHelper::GetDailyProg($now)->Name,
];
$now->modify('+1 day');
}
$this->widget('bootstrap.widgets.TbGridView',
[
'type' => TbHtml::GRID_TYPE_CONDENSED,
'dataProvider' => new CArrayDataProvider($data,
[
'keyField' => 'Date',
'Pagination' =>
[
'PageSize' => 14,
]
]),
]
); ?>
</div>
2014-07-20 21:29:07 +02:00
<div class="well well-small">
<h2>Hit counter</h2>
<hr>
<?php
/* @var CHitCounter $hc */
$hc = Yii::app()->hitcounter;
?>
<strong>Hits (today):</strong> <?php echo $hc->getTodayCount(); ?><br />
<strong>Hits (total):</strong> <?php echo $hc->getTotalCount(); ?><br />
<hr>
<?php
$data = array();
$now = new DateTime();
for ($i = 0; $i < 24; $i++) {
$data[] =
[
'Date' => $now->format('d.m.Y :: D'),
'Count' => $hc->getCountForDay($now),
];
$now->modify('-1 day');
}
$this->widget('bootstrap.widgets.TbGridView',
[
'type' => TbHtml::GRID_TYPE_CONDENSED,
'dataProvider' => new CArrayDataProvider($data,
[
'keyField' => 'Date',
'Pagination' =>
[
'PageSize' => 100,
]
]),
]
); ?>
</div>
2014-06-06 19:31:23 +02:00
</div>