Beispiel #1
0
<?php

include_once "../../login/check.php";
include_once "../../class/notificaciones.php";
$notificaciones = new notificaciones();
$men = $notificaciones->mostrarNotificaciones();
if (count($men)) {
    ?>
<a href="#" class="btn btn-mini btn-success" id="exportarexcel"><?php 
    echo $idioma['ExportarExcel'];
    ?>
</a>
        <table class="table table-bordered table-striped table-hover table-condensed">
		<thead><tr><th>N</th><th><?php 
    echo $idioma['Mensaje'];
    ?>
</th><th><?php 
    echo $idioma['Tipo'];
    ?>
</th><th><?php 
    echo $idioma['NivelUsuario'];
    ?>
</th><th></th></tr></thead>
		<?php 
    foreach ($men as $m) {
        $i++;
        switch ($m['Tipo']) {
            case "1":
                $Tipo = $idioma['Error'];
                break;
            case "2":