SAludos a Todos !!!
La cuestion es la siguiente
Tengo un formulario con sus respectivos campos
lo que que quiero es que solo salgan las opciones de editar eliminar agregar y guardar para los administradores y almacenista
para los usuarios solo quiero q salga el formulario con los datos registrados...
Código PHP:
Ver original<a href="
<?php echo $this->url(array('controller'=>'materiales','action'=>'anyadir'));?>"><input id="del" type="button" value="Agregar material" style="width: auto;"></a>
<br><br>
<div id="contend">
<table id="tablas" cellpadding="0" cellspacing="0" border="0" class="display">
<thead>
<tr>
<th>NOMBRE</th>
<th>UNIDAD</th>
<th>DESCRIPCION</th>
<th>ESTADO</th>
<th>ALMACEN</th>
<th>BODEGA</th>
<th> </th>
</tr>
</thead>
<tbody>
<?php foreach($this->materiales as $material) : ?>
<tr>
<td><?php echo $this->escape($material->nombre);?></td>
<td><?php echo $this->escape($material->unidad);?></td>
<td><?php echo $this->escape($material->descripcion);?></td>
<td><?php echo $this->escape($material->nomestado);?></td>
<td><?php echo $this->escape($material->nomalmacen);?></td>
<td><?php echo $this->escape($material->nombodega);?></td>
<td>
<a href="<?php echo $this->url
(array('controller'=>'materiales', 'action'=>'editar', 'idmateriales'=>$material->idmateriales));?>"><img src="
<?php echo $this->baseUrl()?>/img/tablas/update.png" title="Editar" style="cursor: pointer; border: 0;" /></a>
<a href="
<?php echo $this->url(array('controller'=>'materiales', 'action'=>'borrar', 'idmateriales'=>$material->idmateriales));?>"><img src="
<?php echo $this->baseUrl()?>/img/tablas/cancel.png" title="Eliminar" style="cursor: pointer; border: 0;" /></a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
Alguien me puede orientar como puedo deshabilitar estas opciones estos metods?
Para los Usuarios