]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios/agenda/agenda1.php
c86f270bbfc808d6c500081433703489512688a5
[mecon/intranet.git] / sistema / www / servicios / agenda / agenda1.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 foldmethod=marker:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     agenda
5 -------------------------------------------------------------------------------
6 This file is part of agenda.
7
8 agenda is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 agenda is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: lun ago 11 14:10:35 ART 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 //REQUIRE ONCE {{{
28 require_once '../../../local_lib/Servicios/Agenda.php';
29 require_once 'HTML/Table.php';
30 require_once 'MECON/HTML/Tabla.php';
31 require_once '../../../local_lib/HTML_DietMarco.php';
32 require_once 'MECON/HTML/QuickForm.php';
33 require_once 'MECON/HTML/Image.php';
34 require_once 'MECON/HTML/Link.php';
35 require_once 'DB.php';
36 //}}}
37 //CREO LA CONEXION A LA BASE DE DATOS {{{
38 $DB = DB::connect("mysql://intranet:intranet@intranet-db/agenda",true);
39 if (DB::isError($DB)) {
40     die ($DB->getMessage());
41 }
42 //}}}
43 //CREO LOS OBJETOS NECESARIOS {{{
44 $TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'claro');
45 $MARCO     = new HTML_DietMarco('servicios', 'Servicios');
46 $FORM      = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
47 $FORM->renderer->setTable($TABLAFORM);
48 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
49 $IMG1      = new MECON_HTML_Image('../../images/servicios_lupa.gif');
50 $IMG2      = new MECON_HTML_Image('../../images/servicios_mail.gif');
51 $TELECO    = new MECON_HTML_Image('../../images/servicios_logo_telecomunicaciones.gif');
52 $LINK_1    = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', $IMG2);
53 $LINK_2    = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', array(), array ('class' => 'servicios_agenda_txt2'));
54 //}}}
55 //OBTENGO LOS DATOS DE LAS BASES {{{
56 $EDIFICIOS = Servicios_Agenda::getEdificios($DB); 
57 //}}}
58 //AGREGO LOS ELEMENTOS AL FORM {{{
59 $header        =& $FORM->addElement('header', 'cabecera'      , $IMG1->toHtml().'B&uacute;squeda de Internos');
60 $interno       =& $FORM->addElement('text'  , 'interno'    , 'Interno'    , array ("size" => '10 , "maxlength" => "4"'));
61 $usuario       =& $FORM->addElement('text'  , 'nombre'     , 'Usuario'    , array ("size" => '40'));
62 $codep         =& $FORM->addElement('text'  , 'codep'      , 'Codep'      , array ("size" => '40', "maxlength" => "10"));
63 $dependencia   =& $FORM->addElement('text'  , 'dependencia', 'Dependencia', array ("size" => '40', "value" => "--Ingrese una palabra clave--"));
64 $edificio      =& $FORM->addElement('select', 'edificio'   , 'Edificio'   , $EDIFICIOS, array('size' => '1'));
65 $piso          =& $FORM->addElement('text'  , 'piso'       , 'Piso'       , array ("size" => '10', "maxlength" => "5"));
66 $oficina       =& $FORM->addElement('text'  , 'oficina'    , 'Oficina'    , array ("size" => '10', "maxlength" => "5"));
67 //Agego los radio
68 $grupo = array();
69 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'interno'    , 'interno');
70 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'usuario'    , 'nombre');
71 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'dependencia', 'dependencia');
72 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'edificio'   , 'edificio');
73 $ordenar =& $FORM->addGroup($grupo, 'Ordenado por', 'Ordenado por', ' ', true);
74 $grupo[1]->setChecked(false);
75 $grupo[2]->setChecked(false);
76 $grupo[3]->setChecked(false);
77 //Agrego los botones
78 $grupo2   = array();
79 $grupo2[] =& HTML_QuickForm::createElement('submit', 'aceptar' , 'Buscar');
80 $grupo2[] =& HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'../../servicios.php\';return false;'));
81 $botones  =& $FORM->addGroup($grupo2, 'botones');
82 //}}}
83 //AGREGO LAS REGLAS DE VALIDACION QUE PUEDO AL FORM {{{
84 $FORM->addRule('interno','El interno debe ser numerico','numeric');
85 //}}}
86 //ACOMODO EL FORM {{{
87 $MARCO->addStyleSheet($TABLAFORM->getCss()); //Agrego el estilo de la tabla.
88 $MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //Agrego los estilos particulares de este servicio.
89 //}}}
90 //ARMO LA TABLA {{{
91 $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));
92 $TABLA->updateColAttributes(0,'width="24" height="25"');
93 $TABLA->updateColAttributes(1,'width="60" height="25"');
94 $TABLA->updateColAttributes(2,'width="676" align="right" height="25"');
95 $TABLA->addRow(array($FORM), 'colspan="3"');
96 //}}}
97 //AGREGO EL JAVASCRIPT DE VALIDACION {{{
98 //Este js esta copiado del epl original, ya que con los campos del formulario
99 //llamados de la misma manera las reglas de validacion ya se cumplen.
100 $JS = <<<EOT
101 function validar(theForm)
102 {
103 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
104 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
105 && theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
106 {
107     alert('Indique una opción de búsqueda');theForm.interno.focus();return(false);
108 }
109
110 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
111 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
112 && theForm.edificio.options[theForm.edificio.selectedIndex].value!="-")
113 {
114     alert('Indique un párametro adicional para la búsqueda');theForm.edificio.focus();return(false);
115 }
116
117 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value!="" && theForm.oficina.value==""
118 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--') 
119 && theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
120 {
121     alert('Indique el edificio');theForm.edificio.focus();return(false);
122 }
123
124 if (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
125    {theForm.dependencia.value='-';}
126
127 return(true);
128 }
129 EOT;
130 $MARCO->addScriptDeclaration($JS);
131 //}}}
132 //MUESTRO LA INFO {{{
133 //$MARCO->addTitle('Agenda Telefonica');
134 $MARCO->addBodyContent($TABLA);
135 $MARCO->display();
136 //}}}
137 ?>