X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e54c0e22cd808855fdc1171d1bc70d00175e1ad0..8b81b4e30d7afc4abf39abe0bcc72c0543fa9c70:/sistema/www/noticias.php diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php index 9cc65a2..9158e07 100644 --- a/sistema/www/noticias.php +++ b/sistema/www/noticias.php @@ -1,41 +1,58 @@ - toHTML(); + +require_once 'MECON/HTML/ArbolDB.php'; +require_once 'HTML_DietMarco.php'; +require_once 'HTML_Titulares.php'; +require_once 'HTML_Mensaje.php'; + +$marco = new HTML_DietMarco('noticias', 'Noticias'); + +$noticias = new HTML_Table(array('width' => '760', 'border' => '0')); +if(isset($_GET['grupo'])) +{ + $grupo = $_GET['grupo']; + $dias = null; +} +else +{ + $grupo = null; + $dias = 7; +} +//Esto va a cambiar... +$dbdata = array( + 'db' => $DB, + 'tabla' => 'intranet.grupo_secciones', + 'id' => 'grupo', + 'id_activo' => $grupo, + 'nombre' => 'nombre', + 'habilitado' => 'habilitado', + 'id_padre' => 'grupo_padre', + 'order' => '', + 'prepend_link' => 'noticias.php?grupo='); +$arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS'); +$titulares = new HTML_Titulares($grupo, $dias); +if($titulares->numero_noticias > 1){ + $noticias->addRow(array($arbol,$titulares)); + $marco->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)); + $marco->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)); + $marco->addStyleSheet($mensaje->getCSS()); + $noticias->updateCellAttributes(0, 1, array('valign'=>'middle', 'align'=>'center','width'=>'600')); +} + +$marco->addStyleSheet($arbol->getCSS()); +$noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160')); + +$marco->addBodyContent($noticias); +$marco->display(); ?> - - - - - -
- $db, - 'tabla' => 'grupo_secciones', - 'id' => 'grupo', - 'nombre' => 'nombre', - 'id_padre' => 'grupo_padre', - 'prepend_link' => 'noticias.php?grupo='); - $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif'); - echo $arbol->toHTML(); - ?> - - setNuevo(true); - $ht = new HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0')); - $ht->addRow(array($not, $not)); - $ht->addRow(array($not, $not)); - $ht->addRow(array($not, $not)); - $ht->display(); - ?> -
-