]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MLIB/Tiempo/Intervalo.php
Se agrega a la clase MLIB_PDF_Tabla la posibilidad de agregar estilos nuevos para
[mecon/meconlib.git] / lib / MLIB / Tiempo / Intervalo.php
index 0cc206852eee4534473a676a9a87afa4de9137a5..04c55e9e1311e12f0b8f61c19ff43c9f8d0b260d 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
  
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
  
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,7 +23,7 @@ Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Tiempo/Hora.php';
+require_once 'MLIB/Tiempo/Hora.php';
 
 /**
  * Representa un Intervalo entre 2 horas del mismo dia
@@ -33,7 +32,7 @@ require_once 'MECON/Tiempo/Hora.php';
  * @version $Rev$
  * @author  Gonzalo Merayo <gmeray@mecon.gov.ar>
  */
-class MECON_Tiempo_Intervalo {
+class MLIB_Tiempo_Intervalo {
     /**
      *
      * Hora de inicio del intervalo
@@ -59,13 +58,13 @@ class MECON_Tiempo_Intervalo {
      *                       fin es anterior a la de inicio.
      *                       
      */
-    function MECON_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true)
+    function MLIB_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true)
     {
         if (!$inicio) {
-            $inicio = new MECON_Tiempo_Hora;
+            $inicio = new MLIB_Tiempo_Hora;
         }
         if (!$fin) {
-            $fin = new MECON_Tiempo_Hora;
+            $fin = new MLIB_Tiempo_Hora;
         }
         $this->inicio = $inicio;
         $this->fin    = $fin;
@@ -109,7 +108,7 @@ class MECON_Tiempo_Intervalo {
 
     function getDuracion()
     {
-        $c = new MECON_Tiempo_Hora;
+        $c = new MLIB_Tiempo_Hora;
         $c->copy($this->fin);
         $c->subtract($this->inicio);
         return $c;
@@ -196,9 +195,9 @@ class MECON_Tiempo_Intervalo {
      */
     function cortar($c)
     {
-        if(is_a($c, 'mecon_tiempo_hora')) {
+        if(is_a($c, 'MLIB_tiempo_hora')) {
             return $this->cortarHora($c);
-        } elseif (is_a($c, 'mecon_tiempo_intervalo')) {
+        } elseif (is_a($c, 'MLIB_tiempo_intervalo')) {
             return $this->cortarIntervalo($c);
         } else {
             return false;