]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/noticias.php
Arreglos varios de las noticias
[mecon/intranet.git] / sistema / www / noticias.php
index 7a58a1c73e2de62df91a5020361d5cd78e332278..464b10553eee4a39568f04890b901177fed8ff3a 100644 (file)
@@ -1,10 +1,11 @@
 <?
   require_once '../local_lib/HTML_DietMarco.php';
   require_once '../local_lib/intranetdb.php';
 <?
   require_once '../local_lib/HTML_DietMarco.php';
   require_once '../local_lib/intranetdb.php';
-  require_once 'MECON/HTML/Arbol/ArbolDB.php';
+  require_once 'MECON/HTML/ArbolDB.php';
   require_once '../local_lib/HTML_Titulares.php';
   require_once '../local_lib/HTML_Titulares.php';
+  require_once '../local_lib/HTML_Mensaje.php';
 
 
-  $m = new HTML_DietMarco('noticias');
+  $m = new HTML_DietMarco('noticias', 'Noticias');
   $m->addTitle('Noticias');
   
   $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
   $m->addTitle('Noticias');
   
   $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
                'id' => 'grupo',
                'id_activo' => $grupo,
                'nombre' => 'nombre',
                'id' => 'grupo',
                'id_activo' => $grupo,
                'nombre' => 'nombre',
+               'habilitado' => 'habilitado',
                'id_padre' => 'grupo_padre',
                'id_padre' => 'grupo_padre',
+               'order' => '',
                'prepend_link' => 'noticias.php?grupo=');
                'prepend_link' => 'noticias.php?grupo=');
-  $arbol = new HTML_ArbolDB($dbdata, 'NOTICIAS');
-
+  $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS');
   $titulares = new HTML_Titulares($grupo, $dias);
   $titulares = new HTML_Titulares($grupo, $dias);
-  $noticias->addRow(array($arbol,$titulares));
+  if($titulares->numero_noticias > 1){
+    $noticias->addRow(array($arbol,$titulares));
+    $m->addStyleSheet($titulares->getCSS());
+    $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600'));
+  }elseif($titulares->numero_noticias == 1){
+    $noticia = new HTML_Noticia($titulares->primera_noticia);
+    $noticia->setVolver('noticias.php');
+    $noticia->setCompleta(true);
+    $noticias->addRow(array($arbol,$noticia));
+    $m->addStyleSheet($noticia->getCSS());
+    $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600'));
+  }else//No hay ninguna
+  {
+    $mensaje = new HTML_Mensaje('alerta', 'No hay Noticias en esta Seccion', 300);
+    $noticias->addRow(array($arbol,$mensaje));
+    $m->addStyleSheet($mensaje->getCSS());
+    $noticias->updateCellAttributes(0, 1, array('valign'=>'middle', 'align'=>'center','width'=>'600'));
+  }
+
+  $m->addStyleSheet($arbol->getCSS());
   $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
   $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
-  $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600'));
 
   $m->addBodyContent($noticias);
   $m->display();
 
   $m->addBodyContent($noticias);
   $m->display();