-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmodulo.php
More file actions
34 lines (34 loc) · 947 Bytes
/
modulo.php
File metadata and controls
34 lines (34 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
include_once("../login/check.php");
$NoRevisar=0;
$folder="../";
include_once("../cabecerahtml.php");
$rm=$menu->mostrarMenuUrl($rmenu);
$rm=array_shift($rm);
$Nivel=$_SESSION['Nivel'];
$subme=$submenu->mostrar($Nivel,$rm['CodMenu']);
$titulo=$idioma['Modulo']." ".$idioma['De']." ".$idioma[$rm['Nombre']];
?>
<?php include_once("../cabecera.php");?>
<div class="row-fluid">
<?php $i=0;
foreach($subme as $s){$i++;
?>
<div class="span3 box">
<div class="box-header centrar"><?php echo $idioma[$s['Nombre']];?></div>
<div class="box-content centrar">
<a class="box-small-link" href="<?php echo $s['Url']?>" title="<?php echo $idioma['IrA']?> <?php echo $idioma[$s['Nombre']];?>">
<img src="../imagenes/submenu/<?php echo $s['Imagen']?>">
</a>
</div>
</div>
<?php
if($i==4){
$i=0;
?>
</div>
<div class="row-fluid">
<?php
}
}?>
<?php include_once("../pie.php");?>