2014-06-06 19:31:23 +02:00
|
|
|
<?php
|
|
|
|
/* @var $this MsMainController */
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$this->breadcrumbs =
|
|
|
|
[
|
|
|
|
'Admin',
|
|
|
|
];
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<?php echo MsHtml::pageHeader("Adminstration", "mikescher.de"); ?>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="span3">
|
|
|
|
<?php
|
|
|
|
echo MsHtml::lead('Programs');
|
|
|
|
|
|
|
|
echo MsHtml::stackedTabs(
|
|
|
|
[
|
|
|
|
['label' => 'Show', 'url' => '/log'],
|
|
|
|
['label' => 'Manage', 'url' => '/log/admin'],
|
|
|
|
['label' => 'Create', 'url' => '/log/create'],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="span3">
|
|
|
|
<?php
|
|
|
|
echo MsHtml::lead('Logs');
|
|
|
|
|
|
|
|
echo MsHtml::stackedTabs(
|
|
|
|
[
|
|
|
|
['label' => 'Show', 'url' => '/programs'],
|
|
|
|
['label' => 'Manage', 'url' => '/programs/admin'],
|
|
|
|
['label' => 'Create', 'url' => '/programs/create'],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
</div>
|
|
|
|
|
2014-06-07 19:53:13 +02:00
|
|
|
<div class="span3" style="display: none">
|
2014-06-06 19:31:23 +02:00
|
|
|
<?php
|
|
|
|
echo MsHtml::lead('Programs');
|
|
|
|
|
|
|
|
echo MsHtml::stackedTabs(
|
|
|
|
[
|
|
|
|
['label' => 'Home', 'url' => '#'],
|
|
|
|
['label' => 'Profile', 'url' => '#'],
|
|
|
|
['label' => 'Messages', 'url' => '#'],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
</div>
|
|
|
|
|
2014-06-07 19:53:13 +02:00
|
|
|
<div class="span3" style="display: none">
|
2014-06-06 19:31:23 +02:00
|
|
|
<?php
|
|
|
|
echo MsHtml::lead('Programs');
|
|
|
|
|
|
|
|
echo MsHtml::stackedTabs(
|
|
|
|
[
|
|
|
|
['label' => 'Home', 'url' => '#'],
|
|
|
|
['label' => 'Profile', 'url' => '#'],
|
|
|
|
['label' => 'Messages', 'url' => '#'],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-06-07 19:53:13 +02:00
|
|
|
|
|
|
|
<div class="well well-small">
|
|
|
|
<?php
|
|
|
|
$egh = new ExtendedGitGraph('Mikescher');
|
|
|
|
$egh->loadData();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h2>ExtendedGitGraph</h2>
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<strong>Last Update: </strong> <?php echo $egh->getFinishedDate()->format('d.m.Y H:i'); ?> <br>
|
|
|
|
<strong>Repositories: </strong> <?php echo count($egh->repositories); ?> <br>
|
|
|
|
<strong>Commits: </strong> <?php echo count($egh->commits); ?> <br>
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<a class="btn btn-primary" href="?do_egh_update=1"> Update </a>
|
|
|
|
|
|
|
|
</div>
|
2014-06-06 19:31:23 +02:00
|
|
|
</div>
|