Example #1
0
function fecha_text($fecha)
{
    $mes_text = mes_text($fecha);
    $dia_text = dia_text($fecha);
    $fecha = empty($fecha) ? date('Y-m-d') : $fecha;
    $date = explode('-', $fecha);
    $year = $date[0];
    $dia = $date[2];
    return $dia_text . " " . $dia . " de " . $mes_text . " del " . $year;
}
                        Condicion
                    </td>
                </tr>
        <?php 
        $asistencias->ver_asistencias_int($id_persona_env, $id_temporada);
        while ($dato_asistencia = $asistencias->retornar_SELECT()) {
            $fecha = $dias->ver_fecha($dato_asistencia["id_dia_trabajo"]);
            $class = $cond_asist->ver_class_css($dato_asistencia["id_cond_asist"]);
            ?>
                <tr class="<?php 
            echo $class;
            ?>
" >
                    <td align="center" valign="top" width="100" >
                        <?php 
            echo dia_text($fecha);
            ?>
                    </td>
                    <td align="center" valign="top" width="50" >
                        <?php 
            echo $fecha;
            ?>
                    </td>
                    <td align="center" valign="top" width="100" >
                        <?php 
            echo $dato_asistencia["hora_inicio"];
            ?>
                    </td>
                    <td align="center" valign="top" width="100" >
                        <?php 
            echo $dato_asistencia["hora_asistencia"];
Example #3
0
				</td>
				<td valign="top" align="center" width="25" >
					&nbsp;
				</td>
				<td valign="top" align="center" width="25" >
					&nbsp;
				</td>
			</tr>
<?php 
        $reuniones->ver_reuniones($id_temporada);
        while ($datos_reunion = $reuniones->retornar_SELECT()) {
            ?>
			<tr class="registros_tabla" >
				<td >
					<?php 
            echo dia_text($reuniones_aux->ver_fecha_reunion($datos_reunion["id_reunion"]));
            ?>
				</td>
				<td >
					<?php 
            echo $reuniones_aux->ver_fecha_reunion($datos_reunion["id_reunion"]);
            ?>
				</td>
				<td >
					<?php 
            echo $datos_reunion["hora_inicio"];
            ?>
				</td>
				<td >
					<?php 
            echo $datos_reunion["hora_final"];