X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/eb86d04858357c87d5d7a7e3cb528ef24949b725..cf64bb31523f3b3663305321ded0e8cbb59cfcbc:/sistema/local_lib/HTML_Servicio.php?ds=sidebyside diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index ee65e0f..1386fe4 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -28,8 +28,8 @@ // -require_once 'HTML/Image.php'; -require_once 'HTML/Link.php'; +require_once 'MECON/HTML/Image.php'; +require_once 'MECON/HTML/Link.php'; require_once 'DB.php'; require_once 'AI/Servicio.php'; // require_once 'AI/DB.php'; @@ -60,7 +60,7 @@ class HTML_Servicio extends HTML_Table { 'cellpadding' => '0', 'bgcolor' => '#FFFFFF', 'class' => 'servicio_tabla')); - $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet'); + $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME $this->servicio = new AI_Servicio($seccion); $this->servicio->cargar($bd); $this->servicio->cargarHijos($bd); @@ -74,10 +74,11 @@ class HTML_Servicio extends HTML_Table { */ function toHTML() // ~X2C { - echo ''; if($this->servicio->link == '') $this->servicio->link = 'servicios.php?servicios='.$this->servicio->servicio; - $l = new HTML_Link($this->servicio->link, $this->servicio->nombre, array(), + elseif($this->servicio->necesita_logueo) + $this->servicio->link = 'login.php?redirect='.$this->servicio->servicio; + $l = new MECON_HTML_Link($this->servicio->link, $this->servicio->nombre, array(), array('class' => 'servicio_titulo_tabla')); $this->addRow(array('   '.$l->toHTML()), array('align' => 'center', @@ -85,7 +86,7 @@ class HTML_Servicio extends HTML_Table { 'background'=>'images/servicio_cabecera.gif', 'height'=>30, 'class' => 'servicio_titulo_tabla')); - $img = new HTML_Image('images/servicio_bullet.gif'); + $img = new MECON_HTML_Image('images/servicio_bullet.gif'); $int =& new HTML_Table(array('width' =>'360', 'border' => '0', 'cellspacing' => '0', @@ -108,9 +109,11 @@ class HTML_Servicio extends HTML_Table { { if($s->link == '') $s->link = 'servicios.php?servicios='.$s->servicio; + elseif($s->necesita_logueo) + $s->link = 'login.php?redirect='.$s->servicio; if($par) { - $int->setCellContents(0, 3, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 3, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $this->addRow(array($int)); @@ -118,7 +121,7 @@ class HTML_Servicio extends HTML_Table { } else { - $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $par = true; @@ -126,7 +129,7 @@ class HTML_Servicio extends HTML_Table { } if($par) { - $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $int->setCellContents(0, 2, ''); @@ -134,10 +137,21 @@ class HTML_Servicio extends HTML_Table { $this->addRow(array($int)); } - $this->addRow(array(new HTML_Image('images/servicio_borde_inf.gif'))); + $this->addRow(array(new MECON_HTML_Image('images/servicio_borde_inf.gif'))); return parent::toHTML(); } // -X2C + // +X2C Operation 170 + /** + * @return void + * @access public + */ + function getCSS() // ~X2C + { + return "css/servicio.css"; + } + // -X2C + } // -X2C Class :HTML_Servicio ?>