2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Economía |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
9 // | Intranet is free software; you can redistribute it and/or modify |
10 // | it under the terms of the GNU General Public License as published |
11 // | by the Free Software Foundation; either version 2 of the License, |
12 // | or (at your option) any later version. |
14 // | Intranet is distributed in the hope that it will be useful, but |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 // | General Public License for more details. |
19 // | You should have received a copy of the GNU General Public License |
20 // | along with Hooks; if not, write to the Free Software Foundation, |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Aug 14 16:03:23 2003
24 // | Autor: Matias Sklar <msklar@mecon.gov.ar>
25 // +--------------------------------------------------------------------+
33 require_once 'MECON/Dependencia.php';
36 // +X2C Class 200 :Servicios_Bandas_Dependencia
38 * Clase que representa una dependencia con bandas horarias
42 class Servicios_Bandas_Dependencia extends MECON_Dependencia {
47 * Devuelve todos los agentes de la dependencia
50 * @param Tipo_Agente $Tipo_agente
55 function getAgentes($codep, $Tipo_agente) // ~X2C
57 trigger_error('Not implemented!', E_USER_WARNING);
63 * Devuelve el promedio horario mensual de la dependencia en un mes en particular
65 * @param Tipo_Agente $Tipo_agente
70 function getPromedio($Tipo_agente = todos) // ~X2C
72 trigger_error('Not implemented!', E_USER_WARNING);
78 * Devuelve la cantidad de ausentes sin aviso de la dependencia en un mes.
80 * @param Tipo_Agente $Tipo_agente
85 function getNASA($Tipo_agente = todos) // ~X2C
87 trigger_error('Not implemented!', E_USER_WARNING);
93 * @param date $fecha La fecha para determinar el mes a mostrar
98 function Servicios_Bandas_Dependencia($fecha = null) // ~X2C
100 trigger_error('Not implemented!', E_USER_WARNING);
104 } // -X2C Class :Servicios_Bandas_Dependencia