summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/InvFecha.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/includes/InvFecha.php')
-rw-r--r--admin/WebConsole/includes/InvFecha.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/admin/WebConsole/includes/InvFecha.php b/admin/WebConsole/includes/InvFecha.php
deleted file mode 100644
index 5bc46c4a..00000000
--- a/admin/WebConsole/includes/InvFecha.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?
-/*______________________________________________________________________
- Cambia de posicion los extremos de una fecha. Devuelve una fecha con formato
- dd-mm-aaaa si el formato de entrada es aaaa-mm-dd y viseversa
- Parametros:
- - fecha: Una cadena con los datos de una fecha
-_______________________________________________________________________*/
-function InvFecha($fecha){
- if ($fecha=="0000-00-00")return("");
-
- $auxsplit=split(" ",$fecha);
- list($anno_p,$mes_p,$dia_p)=split("[/-]",$auxsplit[0]);
- $fecha_p=$dia_p.'-'.$mes_p.'-'.$anno_p;
- return($fecha_p);
-}
-////////////////////////////////////////////////////
-//Convierte fecha de mysql a normal
-////////////////////////////////////////////////////
-function sacafechaDB($fecha){
- ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
- $lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
- return $lafecha;
-}
-
-////////////////////////////////////////////////////
-//Convierte fecha de normal a mysql
-////////////////////////////////////////////////////
-
-function metefechaDB($fecha){
- ereg( "([0-9]{1,2})/([0-9]{1,2})/([0-9]{2,4})", $fecha, $mifecha);
- $lafecha=$mifecha[3]."-".$mifecha[2]."-".$mifecha[1];
- return $lafecha;
-}
-function HoraValida($hora){
- if ($hora=="00:00:00")return("");
-}
-?> \ No newline at end of file