]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/Date.php
Se corrige un error cuando se parseaban las variables. Si el _getVars no
[mecon/meconlib.git] / lib / MLIB / Date.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15  
16 You should have received a copy of the GNU General Public License; if not,
17 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 Boston, MA  02111-1307  USA
19 -------------------------------------------------------------------------------
20 Creado: vie nov 14 16:40:05 ART 2003
21 Autor:  Leandro Lucarella <llucar@mecon.gov.ar>
22 -------------------------------------------------------------------------------
23 $Id: DBO.php 361 2003-10-06 16:56:46Z llucar $
24 -----------------------------------------------------------------------------*/
25
26 require_once 'Date.php';
27 require_once 'Date/Calc.php';
28
29 /**
30  * Clase de manejo de fechas con algunos extra features.
31  *
32  * @access public
33  */
34 class MLIB_Date extends Date {
35
36     /**
37      * Obtiene la fecha de inicio del próximo mes.
38      *
39      * @return MLIB_Date.
40      * @access public
41      */
42     function getBeginOfNextMonth()
43     {
44         return new MLIB_Date(Date_Calc::beginOfNextMonth(
45             $this->day, $this->month, $this->year, '%Y-%m-%d'));
46     }
47
48     /**
49      * Obtiene la fecha de fin del próximo mes.
50      *
51      * @return MLIB_Date.
52      * @access public
53      */
54     function getEndOfNextMonth()
55     {
56         return new MLIB_Date(Date_Calc::endOfNextMonth(
57             $this->day, $this->month, $this->year, '%Y-%m-%d'));
58     }
59
60     /**
61      * Obtiene la fecha de inicio del mes anterior.
62      *
63      * @return MLIB_Date.
64      * @access public
65      */
66     function getBeginOfPrevMonth()
67     {
68         return new MLIB_Date(Date_Calc::beginOfPrevMonth(
69             $this->day, $this->month, $this->year, '%Y-%m-%d'));
70     }
71
72     /**
73      * Obtiene la fecha de fin del mes anterior.
74      *
75      * @return MLIB_Date.
76      * @access public
77      */
78     function getEndOfPrevMonth()
79     {
80         return new MLIB_Date(Date_Calc::endOfPrevMonth(
81             $this->day, $this->month, $this->year, '%Y-%m-%d'));
82     }
83
84 }
85
86 ?>