<?php
class Form_PrincipalForm extends Zend_Form
{
public function __construct($option = null){
parent::__construct($option);
$this->setName('opciones');
$usuario = new Zend_Form_Element_Hidden('idusuarios');
$nombre = new Zend_Form_Element_Text('usuarios');
$nombre->setLabel('USUARIOS')
->setRequired(true)
->addFilter('StripTags')
->addFilter('StringTrim')
->addValidator('NotEmpty');
$submit = new Zend_Form_Element_Submit('submit');
$submit->setAttrib('idusuarios','submitbutton');
// $this->addElements(array($usuario,$nombre,$submit));
$opciones = new Zend_Form_Element_Select('opcion');
$opciones->setLabel('Roles')
->setAttrib('onchange','prueba()');
$opciones->addMultiOption('','SELECIONE UN ROL');
$tabla = new CuentasUsuariosModel();
$mysesion = new Zend_Session_Namespace('mysesion');
$usuario=$mysesion->usuario;
$password=$mysesion->password;
foreach ($tabla->consultarCuentas($usuario, $password)as $rows){
$opciones->addMultiOption($rows->idroles, $rows->nombre);
}
$this->addElements(array($opciones,$usuario,$nombre,$submit));
?>
<table>
<tr>
<th>Estado</th>
<th>Solicitud Herramientas</th>
<th>Nombres</th>
<th>Fecha</th>
<th>Fecha Estimada Devolucion</th>
<th> </th>
</tr>
<?php
$tabla2 = new CuentasUsuariosModel();
foreach ($tabla2->consultarFechas($usuario)as $rows1){
/*$fechaUno = new Zend_Date();
Zend_Date::setOptions(array('format_type' => 'php'));
$date=new Zend_Date($fechaUno);
print $date->toString('Y-m-d');*/
?>
<tr>
<td><?php
/*$fechaUno = new Zend_Date(strtotime('11/10/2011 00:00:00'));
$fechaUno->toString("YYYY.MM.dd HH:mm:ss");
echo $fechaUno;*/
$fechaDevolucion = $rows1->fechaEstimadaDevolucion;
//echo $fechaDos->get('yyyy-mm-dd');
if(date("Y-m-d") > $fechaDevolucion) { echo '<img src="/img/rojo.png">';
}
if(date("Y-m-d") <= $fechaDevolucion) { echo '<img src="/img/verde.png">';
} else {
echo '<!--<img src="/img/gris.png">-->';
} ?></td>
<td><?php echo $rows1->idsolicitudHerramientas; ?></td>
<td><?php echo $rows1->nombres; ?></td>
<td><?php echo $rows1->fecha; ?></td>
<td><?php echo $rows1->fechaEstimadaDevolucion; }?></td>
</tr>
</table>
<div id="div_3" class="contenido" style="display: none;">
<p align="center"><h2>Prestamos De Todos Los Usuarios</h2></p>
<br>
<table>
<tr>
<th>Estado</th>
<th>Solicitud Herramientas</th>
<th>Nombres</th>
<th>Fecha</th>
<th>Fecha Estimada Devolucion</th>
<th> </th>
</tr>
<?php
$tabla3 = new CuentasUsuariosModel();
foreach ($tabla3->consultarFechasTotal()as $rows2){
/*$fechaUno = new Zend_Date();
Zend_Date::setOptions(array('format_type' => 'php'));
$date=new Zend_Date($fechaUno);
print $date->toString('Y-m-d');*/
?>
<tr>
<td><?php
/*$fechaUno = new Zend_Date(strtotime('11/10/2011 00:00:00'));
$fechaUno->toString("YYYY.MM.dd HH:mm:ss");
echo $fechaUno;*/
$fechaDevolucion = $rows2->fechaEstimadaDevolucion;
//echo $fechaDos->get('yyyy-mm-dd');
if(date("Y-m-d") > $fechaDevolucion) { echo '<img src="/img/rojo.png">';
}
if(date("Y-m-d") <= $fechaDevolucion) { echo '<img src="/img/verde.png">';
} else {
echo '<!--<img src="/img/gris.png">-->';
} ?></td>
<td><?php echo $rows2->idsolicitudHerramientas; ?></td>
<td><?php echo $rows2->nombres; ?></td>
<td><?php echo $rows2->fecha; ?></td>
<td><?php echo $rows2->fechaEstimadaDevolucion; }?></td>
</tr>
</table>
</div>
<?php
$tabla = new solcitudesmaterialModel();
foreach ( $tabla->actualizar()as $c)
{
echo "<table border=\"1\" align=\"center\">";
echo "<tr><th>fecha</th>";
echo "<th>estado solicitud</th>";
echo "<tr><td>";
echo $c -> fecha;
echo "</td><td>";
echo $c -> estado;
echo "</td></tr>";
echo "</table>";
}
}}
?>