]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/noticias.php
Ahora tiene 2 tablas para las noticias desacomodadas
[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        $hoy = new Date();
32        $fecha_nuevo  = $hoy->format('%Y-%m-%d');
33        $hoy->subtractSeconds(60*60*24*7);//7 dias
34        $fecha_limite = $hoy->format('%Y-%m-%d');
35        $query = "SELECT Articles.article_id,
36                         IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
37                  FROM Articles, ArticlePublicationStates
38                  WHERE Articles.article_publication_state_id =
39                         ArticlePublicationStates.article_publication_state_id
40                  AND ArticlePublicationStates.publication_state_id=5
41                  AND Articles.publication_date > '$fecha_limite' 
42                  ORDER BY Articles.publication_date desc";
43        $result = $db->query($query);
44        if(DB::isError($result))
45          die($result->getMessage("query mal hecho"));
46        $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
47        $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
48        $impar = true;
49        while($row = $result->fetchRow())
50        {
51          $n = new noticia($row[0]);
52          $not = new HTML_Noticia($n);
53          if($row[1] == 'NUEVA')
54              $not->setNuevo(true);
55          if($impar)
56          {
57            $impar = false;
58            $ht1->addRow(array($not));
59          }
60          else
61          {
62            $impar = true;
63            $ht2->addRow(array($not));
64          }
65        }
66        $ht = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
67        $ht->addRow(array($ht1,$ht2));
68        $ht->display();
69     ?>
70     </td>
71   </tr>
72 </table>
73 </body>