2018-08-19 17:45:49 +02:00
|
|
|
<div id="dashboard" class="container">
|
2018-05-20 21:48:43 +02:00
|
|
|
<div class="row">
|
2018-08-19 17:45:49 +02:00
|
|
|
<div class="col-md-7 d-none d-sm-block">
|
2018-06-03 21:51:47 +02:00
|
|
|
|
2018-10-01 16:34:28 +02:00
|
|
|
<!-- Good message -->
|
|
|
|
<div>
|
2018-10-20 21:34:04 +02:00
|
|
|
<h2 id="hello-message"><?php echo $L->g('hello') ?></h2>
|
2018-10-01 16:34:28 +02:00
|
|
|
<script>
|
|
|
|
$( document ).ready(function() {
|
2018-10-01 19:05:24 +02:00
|
|
|
$("#hello-message").fadeOut(1000, function() {
|
2018-10-01 17:15:29 +02:00
|
|
|
var date = new Date()
|
|
|
|
var hours = date.getHours()
|
2018-10-20 21:34:04 +02:00
|
|
|
if (hours > 6 && hours < 12) {
|
2018-10-01 17:15:29 +02:00
|
|
|
$(this).html('<span class="oi oi-sun"></span> <?php echo $L->g('good-morning') ?>');
|
2018-10-20 21:34:04 +02:00
|
|
|
} else if (hours > 12 && hours < 18) {
|
2018-10-01 17:15:29 +02:00
|
|
|
$(this).html('<span class="oi oi-sun"></span> <?php echo $L->g('good-afternoon') ?>');
|
2018-10-20 21:34:04 +02:00
|
|
|
} else if (hours > 18 && hours < 22) {
|
2018-10-01 19:05:24 +02:00
|
|
|
$(this).html('<span class="oi oi-moon"></span> <?php echo $L->g('good-evening') ?>');
|
2018-10-20 21:34:04 +02:00
|
|
|
} else {
|
|
|
|
$(this).html('<span class="oi oi-moon"></span> <?php echo $L->g('good-night') ?>');
|
2018-10-01 17:15:29 +02:00
|
|
|
}
|
|
|
|
}).fadeIn(1000);
|
2018-10-01 16:34:28 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
|
2018-06-03 21:51:47 +02:00
|
|
|
<!-- Quick Links -->
|
|
|
|
<div class="container border-bottom pb-4">
|
2018-08-08 00:16:35 +02:00
|
|
|
<h4 class="pb-3"><?php $L->p('Quick links') ?></h4>
|
2018-06-03 21:51:47 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<a class="quick-links text-center" style="color: #4586d4" href="<?php echo HTML_PATH_ADMIN_ROOT.'new-content' ?>">
|
|
|
|
<div class="oi oi-justify-left quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('New content') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col border-left border-right">
|
|
|
|
<a class="quick-links text-center" href="<?php echo HTML_PATH_ADMIN_ROOT.'categories' ?>">
|
|
|
|
<div class="oi oi-tags quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('Categories') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<a class="quick-links text-center" href="<?php echo HTML_PATH_ADMIN_ROOT.'users' ?>">
|
|
|
|
<div class="oi oi-people quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('Users') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container mt-4">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<a class="quick-links text-center" target="_blank" href="https://docs.bludit.com">
|
|
|
|
<div class="oi oi-compass quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('Documentation') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col border-left border-right">
|
|
|
|
<a class="quick-links text-center" target="_blank" href="https://forum.bludit.org">
|
|
|
|
<div class="oi oi-loop-square quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('Forum support') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<a class="quick-links text-center" target="_blank" href="https://gitter.im/bludit/support">
|
|
|
|
<div class="oi oi-chat quick-links-icons"></div>
|
2018-08-08 00:16:35 +02:00
|
|
|
<div><?php $L->p('Chat support') ?></div>
|
2018-06-03 21:51:47 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php Theme::plugins('dashboard') ?>
|
2015-06-26 06:31:53 +02:00
|
|
|
</div>
|
2018-08-01 15:07:37 +02:00
|
|
|
<div class="col-md-5">
|
2015-06-26 06:31:53 +02:00
|
|
|
|
2018-05-20 21:48:43 +02:00
|
|
|
<!-- Notifications -->
|
2018-06-03 21:51:47 +02:00
|
|
|
<ul class="list-group list-group-striped b-0">
|
2018-08-08 00:16:35 +02:00
|
|
|
<li class="list-group-item pt-0"><h4><?php $L->p('Notifications') ?></h4></li>
|
2018-05-20 21:48:43 +02:00
|
|
|
<?php
|
2018-06-10 13:54:55 +02:00
|
|
|
$logs = array_slice($syslog->db, 0, NOTIFICATIONS_AMOUNT);
|
2018-05-20 21:48:43 +02:00
|
|
|
foreach ($logs as $log) {
|
|
|
|
$phrase = $L->g($log['dictionaryKey']);
|
|
|
|
echo '<li class="list-group-item">';
|
|
|
|
echo $phrase;
|
|
|
|
if (!empty($log['notes'])) {
|
2017-09-08 00:43:53 +02:00
|
|
|
echo ' « <b>'.$log['notes'].'</b> »';
|
2017-06-09 20:30:13 +02:00
|
|
|
}
|
2018-06-03 21:51:47 +02:00
|
|
|
echo '<br><span class="notification-date"><small>';
|
2017-06-09 20:30:13 +02:00
|
|
|
echo Date::format($log['date'], DB_DATE_FORMAT, NOTIFICATIONS_DATE_FORMAT);
|
2018-08-08 00:16:35 +02:00
|
|
|
echo ' [ '.$log['username'] .' ]';
|
2018-06-03 21:51:47 +02:00
|
|
|
echo '</small></span>';
|
2017-06-09 20:30:13 +02:00
|
|
|
echo '</li>';
|
|
|
|
}
|
2018-05-20 21:48:43 +02:00
|
|
|
?>
|
|
|
|
</ul>
|
2017-12-20 20:37:17 +01:00
|
|
|
|
2015-07-31 02:49:29 +02:00
|
|
|
</div>
|
2015-10-19 00:45:58 +02:00
|
|
|
</div>
|
2018-08-01 15:07:37 +02:00
|
|
|
</div>
|