mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
ALPHA 3.0.3
This commit is contained in:
@@ -2,6 +2,38 @@
|
||||
|
||||
@section('content')
|
||||
|
||||
<!--/* ALPHA 3.0.3 */-->
|
||||
<div class="card-header">
|
||||
<strong class="card-title"><i class="fa fa-star" aria-hidden="true" style="color: gold"></i> ALPHA 3.0.3<small><span class="badge badge-success float-right mt-1">STABLE</span> <span class="badge badge-warning float-right mt-1">ALPHA</span></small></strong>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
Nouveauté
|
||||
<ul style="margin-left: 28px;list-style-type: none;">
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Mise à jour de la section notification.</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout d'une option pour bloquer les notifications de l'horaire lors de ça construction initiale.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<hr>
|
||||
<p>
|
||||
Back End & API
|
||||
<ul style="margin-left: 28px;list-style-type: none;">
|
||||
<li><i class="fa fa-plug" aria-hidden="true" style="color: #0174DF"></i> Mise à jours du nom de l'adresse d'envois de Email</li>
|
||||
<li><i class="fa fa-plug" aria-hidden="true" style="color: #0174DF"></i> Mise à jours de l'adresse d'envois de Email</li>
|
||||
<li><i class="fa fa-plug" aria-hidden="true" style="color: #0174DF"></i> Ajout de la suppression de notification</li>
|
||||
<li><i class="fa fa-plug" aria-hidden="true" style="color: #0174DF"></i> Ajout de notification Email et Alert lors de l'ajout d'evenement a l'horaire</li>
|
||||
</ul>
|
||||
</p>
|
||||
<hr>
|
||||
<p>
|
||||
Correction de bug
|
||||
<ul style="margin-left: 28px;list-style-type: none;">
|
||||
<li><i class="fa fa-bug" aria-hidden="true" style="color: green"></i> Correction de multiple bug</li>
|
||||
</ul>
|
||||
</p>
|
||||
<small><span class="badge badge-primary float-right mt-1">2018-09-11 14:30</span></small>
|
||||
</div>
|
||||
|
||||
<!--/* ALPHA 3.0.2 */-->
|
||||
<div class="card-header">
|
||||
<strong class="card-title"><i class="fa fa-star" aria-hidden="true" style="color: gold"></i> ALPHA 3.0.2<small><span class="badge badge-success float-right mt-1">STABLE</span> <span class="badge badge-warning float-right mt-1">ALPHA</span></small></strong>
|
||||
|
||||
@@ -30,7 +30,16 @@ foreach (Auth::user()->unreadNotifications as $notification) {
|
||||
<div class="dropdown-menu" aria-labelledby="notification">
|
||||
<?php
|
||||
foreach (Auth::user()->unreadNotifications as $notification) {
|
||||
echo '<a class="dropdown-item media bg-flat-color-1" href="#"><i class="fa fa-info"></i><p>'.$notification->data['msg'].'</p></a>';
|
||||
$fa_icon = "fa-info";
|
||||
$found = strpos($notification->data['msg'],"Ajout");
|
||||
if ($found !== false) {
|
||||
$fa_icon = "fa-plus";
|
||||
}
|
||||
$found = strpos($notification->data['msg'],"Suppression");
|
||||
if ($found !== false) {
|
||||
$fa_icon = "fa-plus";
|
||||
}
|
||||
echo '<form method="post" action="/admin/notication/mark/'.$notification->id.'">'.csrf_field().'<button name="url" type="submit" value="'.$notification->data['url'].'" class="dropdown-item media cs-notification" href="#"><i class="fa '.$fa_icon.'"></i><p>'.$notification->data['msg'].'</p></button></form>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user