]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/noticias.php
Ahora muestra todas las noticias
[mecon/intranet.git] / sistema / www / noticias.php
1 <body bgcolor="#FFFFFF" class="subtitulo" link="#003366" vlink="#660066" alink="#0066FF" topmargin="0">
2 <?
3   require_once '../local_lib/copete.php';
4   $c = new Copete('noticias');
5   echo $c->toHTML();
6 ?>
7 <table width='760' border='0'>
8   <tr>
9     <td width='160' valign='top'>
10       <?
11           require_once '../local_lib/intranetdb.php';
12           require_once 'MECON/HTML/Arbol/ArbolDB.php';
13           $db = IntranetDB::connect();
14           $dbdata = array(
15                 'db' => $db,
16                 'tabla' => 'grupo_secciones',
17                 'id' => 'grupo',
18                 'nombre' => 'nombre',
19                 'id_padre' => 'grupo_padre',
20                 'prepend_link' => 'noticias.php?grupo=');
21           $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
22           echo $arbol->toHTML();
23      ?>
24     </td>
25     <td width='600'>
26     <?
27        require_once '../../lib/noticia.php';
28        require_once '../local_lib/HTML_Noticia.php';
29        require_once '../../lib/mecondavdb.php';
30        $db = MEconDAVDB::Connect();
31        $fecha_limite = '2003-07-01';
32        $fecha_nuevo  = '2003-07-07';
33        $query = "SELECT Articles.article_id,
34                         IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
35                  FROM Articles, ArticlePublicationStates
36                  WHERE Articles.article_publication_state_id =
37                         ArticlePublicationStates.article_publication_state_id
38                  AND ArticlePublicationStates.publication_state_id=5
39                  AND Articles.publication_date > '$fecha_limite' 
40                  ORDER BY Articles.publication_date desc";
41        $result = $db->query($query);
42        if(DB::isError($result))
43          die($result->getMessage("query mal hecho"));
44        $ht = new HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0'));
45        $not1 = $not2 = null;
46        while($row = $result->fetchRow())
47        {
48          
49          $n = new noticia($row[0]);
50          $not = new HTML_Noticia($n);
51          if($row[1] == 'NUEVA')
52              $not->setNuevo(true);
53          if(is_null($not1)) $not1 = $not;
54          elseif(is_null($not2))
55          {
56            $not2 = $not;
57            $ht->addRow(array($not1, $not2));
58          }
59          else
60          {
61            $not1 = $not;
62            $not2 = null;
63          }
64        }
65        if(is_null($not2)) $ht->addRow(array($not1));
66        $ht->display();
67     ?>
68     </td>
69   </tr>
70 </table>
71 </body>