21 lines
449 B
PHP
21 lines
449 B
PHP
<?php
|
|
/*
|
|
* TP PHP
|
|
* Vue alert
|
|
*
|
|
* Copyright 2016, Eric Dufour
|
|
* http://techfacile.fr
|
|
*
|
|
* Licensed under the MIT license:
|
|
* http://www.opensource.org/licenses/MIT
|
|
*
|
|
* alerts: http://www.w3schools.com/bootstrap/bootstrap_alerts.asp
|
|
*/
|
|
if(isset($alert))
|
|
{
|
|
?>
|
|
<div class="alert alert-<?= isset($alert['classAlert']) ? $alert['classAlert'] : 'danger' ?>">
|
|
<strong><?= $alert['messageAlert'] ?></strong>
|
|
</div>
|
|
<?php
|
|
}
|