]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios/agenda/agenda1.php
cbf9e4dac60f0401ee47eb8d9ec11265c7742cbc
[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 //REQUIRE ONCE {{{
27 require_once '/home/mmarrese/public_html/intranet/sistema/local_lib/Servicios/Agenda.php';
28 //require_once '../../../local_lib/Servicios/Agenda.php';
29 require_once 'HTML/Table.php';
30 require_once '../../../local_lib/HTML_DietMarco.php';
31 require_once 'MECON/HTML/QuickForm.php';
32 require_once 'HTML/Image.php';
33 require_once 'HTML/Link.php';
34 require_once 'DB.php';
35 //}}}
36 //CREO LA CONEXION A LA BASE DE DATOS {{{
37 $DB = DB::connect("mysql://intranet:intranet@intranet-db/agenda",true);
38 if (DB::isError($DB)) {
39     die ($DB->getMessage());
40 }
41 //}}}
42 //CREO LOS OBJETOS NECESARIOS {{{
43 $MARCO     = new HTML_DietMarco('servicios');
44 $FORM      = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
45 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
46 $IMG1      = new HTML_Image('../../images/servicios_agenda_lupa.gif');
47 $IMG2      = new HTML_Image('../../images/servicios_agenda_mail.gif');
48 $TELECO    = new HTML_Image('../../images/servicios_agenda_teleco.gif');
49 $LINK_1    = new HTML_Link('mailto:teleco@mecon.gov.ar', $IMG2);
50 $LINK_2    = new HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', array(), array ('class' => 'txt2'));
51 //}}}
52 //OBTENGO LOS DATOS DE LAS BASES {{{
53 $EDIFICIOS = Servicios_Agenda::getEdificios($DB); 
54 //}}}
55 //AGREGO LOS ELEMENTOS AL FORM {{{
56 $header        =& $FORM->addElement('header', 'comun'      , $IMG1->toHtml().'B&uacute;squeda de Internos');
57 $interno       =& $FORM->addElement('text'  , 'interno'    , 'Interno'    , array ("size" => '10 , "maxlength" => "4"'));
58 $usuario       =& $FORM->addElement('text'  , 'nombre'     , 'Usuario'    , array ("size" => '40'));
59 $codep         =& $FORM->addElement('text'  , 'codep'      , 'Codep'      , array ("size" => '40', "maxlength" => "10"));
60 $dependencia   =& $FORM->addElement('text'  , 'dependencia', 'Dependencia', array ("size" => '40', "value" => "--Ingrese una palabra clave--"));
61 $edificio      =& $FORM->addElement('select', 'edificio'   , 'Edificio'   , $EDIFICIOS, array('size' => '1'));
62 $piso          =& $FORM->addElement('text'  , 'piso'       , 'Piso'       , array ("size" => '10', "maxlength" => "5"));
63 $oficina       =& $FORM->addElement('text'  , 'oficina'    , 'Oficina'    , array ("size" => '10', "maxlength" => "5"));
64 //Agego los radio
65 $grupo = array();
66 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'interno'    , 'interno');
67 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'usuario'    , 'nombre');
68 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'dependencia', 'dependencia');
69 $grupo[] =& HTML_QuickForm::createElement('radio', 'op1', '', 'edificio'   , 'edificio');
70 $ordenar =& $FORM->addGroup($grupo, 'Ordenado por', 'Ordenado por', ' ', true);
71 $grupo[1]->setChecked(false);
72 $grupo[2]->setChecked(false);
73 $grupo[3]->setChecked(false);
74 //Agrego los botones
75 $grupo2   = array();
76 $grupo2[] =& HTML_QuickForm::createElement('submit', 'aceptar' , 'Buscar');
77 $grupo2[] =& HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'../../servicios.php\';return false;'));
78 $botones  =& $FORM->addGroup($grupo2, 'botones');
79 //}}}
80 //AGREGO LAS REGLAS DE VALIDACION QUE PUEDO AL FORM {{{
81 $FORM->addRule('interno','El interno debe ser numerico','numeric');
82 //}}}
83 //ACOMODO EL FORM {{{
84 $MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO
85 $FORM->setRenderer('MECON_HTML_QuickForm_Renderer_Tabla_Servicios');
86 $FORM->setRendererOpts('width="500"');
87 //}}}
88 //ARMO LA TABLA {{{
89 $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));
90 $TABLA->updateColAttributes(0,'width="24" height="25"');
91 $TABLA->updateColAttributes(1,'width="60" height="25"');
92 $TABLA->updateColAttributes(2,'width="676" class="txt_derecha" height="25"');
93 $TABLA->addRow(array($FORM), 'colspan="3"');
94 //}}}
95 //AGREGO EL JAVASCRIPT DE VALIDACION {{{
96 //Este js esta copiado del epl original, ya que con los campos del formulario
97 //llamados de la misma manera las reglas de validacion ya se cumplen.
98 $JS = <<<EOT
99 function validar(theForm)
100 {
101 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
102 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
103 && theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
104 {
105     alert('Indique una opción de búsqueda');theForm.interno.focus();return(false);
106 }
107
108 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
109 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
110 && theForm.edificio.options[theForm.edificio.selectedIndex].value!="-")
111 {
112     alert('Indique un párametro adicional para la búsqueda');theForm.edificio.focus();return(false);
113 }
114
115 if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value!="" && theForm.oficina.value==""
116 && (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--') 
117 && theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
118 {
119     alert('Indique el edificio');theForm.edificio.focus();return(false);
120 }
121
122 if (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
123    {theForm.dependencia.value='-';}
124
125 return(true);
126 }
127 EOT;
128 $MARCO->addScriptDeclaration($JS);
129 //}}}
130 //MUESTRO LA INFO {{{
131 $MARCO->addTitle('Agenda Telefonica');
132 $MARCO->addBodyContent($TABLA);
133 $MARCO->display();
134 //}}}
135 ?>