]> git.llucax.com Git - mecon/intranet.git/commitdiff
Abstraccion de los titulares en el objeto HTML_Titulares
authorGonzalo Merayo <merayo@gmail.com>
Tue, 8 Jul 2003 15:50:53 +0000 (15:50 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Tue, 8 Jul 2003 15:50:53 +0000 (15:50 +0000)
sistema/local_lib/HTML_Noticia.php
sistema/local_lib/HTML_Titulares.php [new file with mode: 0644]
sistema/www/noticias.php

index 7477fe9b561f80b602e3091d3ba4d7ba1db28eed..bbbf2002f6157f84cdc3384c3e531ff2cda32eec 100644 (file)
@@ -130,4 +130,4 @@ class HTML_Noticia extends HTML_Table {
     // -X2C
 
 } // -X2C Class :HTML_Noticia
-?>
+?>
\ No newline at end of file
diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php
new file mode 100644 (file)
index 0000000..1c003c9
--- /dev/null
@@ -0,0 +1,114 @@
+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// |                      Ministerio de Economía                        |
+// |                             Intranet                              |
+// +--------------------------------------------------------------------+
+// | This file is part of Intranet.                                    |
+// |                                                                    |
+// | Intranet is free software; you can redistribute it and/or modify  |
+// | it under the terms of the GNU General Public License as published  |
+// | by the Free Software Foundation; either version 2 of the License,  |
+// | or (at your option) any later version.                             |
+// |                                                                    |
+// | Intranet is distributed in the hope that it will be useful, but   |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of         |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
+// | General Public License for more details.                           |
+// |                                                                    |
+// | You should have received a copy of the GNU General Public License  |
+// | along with Hooks; if not, write to the Free Software Foundation,   |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
+// +--------------------------------------------------------------------+
+// | Creado: Tue Jul 8 12:37:27 2003                                    |
+// | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                       |
+// +--------------------------------------------------------------------+
+//
+// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
+//
+
+require_once '../../lib/noticia.php';
+require_once '../local_lib/HTML_Noticia.php';
+require_once '../../lib/mecondavdb.php';
+
+// +X2C includes
+require_once 'HTML/Table.php';
+// ~X2C
+
+// +X2C Class 187 :HTML_Titulares
+/**
+ * @access public
+ */
+class HTML_Titulares extends HTML_Table {
+    /**
+     * @var    int $antiguedad
+     * @access public
+     */
+    var $antiguedad = null;
+
+    /**
+     * @var    int $grupo_secciones
+     * @access public
+     */
+    var $grupo_secciones;
+
+    // ~X2C
+
+    // +X2C Operation 190
+    /**
+     * @param  int $grupo_secciones 
+     * @param  int $antiguedad 
+     *
+     * @return void
+     * @access public
+     */
+    function HTML_Titulares($grupo_secciones = null, $antiguedad = null) // ~X2C
+    {
+      parent::HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $db = MEconDAVDB::Connect();
+      $hoy = new Date();
+      $fecha_nuevo  = $hoy->format('%Y-%m-%d');
+      $query = "SELECT Articles.article_id,
+                        IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
+                 FROM Articles, ArticlePublicationStates
+                WHERE Articles.article_publication_state_id =
+                       ArticlePublicationStates.article_publication_state_id
+                AND ArticlePublicationStates.publication_state_id=5 ";
+      if(!is_null($antiguedad))
+      {
+        $hoy->subtractSeconds(60*60*24*$antiguedad);
+        $fecha_limite = $hoy->format('%Y-%m-%d');
+        $query .=  "AND Articles.publication_date > '$fecha_limite' ";
+      }
+      $query .=  "ORDER BY Articles.publication_date desc";
+      $result = $db->query($query);
+      if(DB::isError($result))
+         die($result->getMessage("query mal hecho"));
+      $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $impar = true;
+      while($row = $result->fetchRow())
+      {
+          $n = new noticia($row[0]);
+          $not = new HTML_Noticia($n);
+          if($row[1] == 'NUEVA')
+              $not->setNuevo(true);
+          if($impar)
+          {
+              $impar = false;
+              $ht1->addRow(array($not));
+          }
+          else
+          {
+              $impar = true;
+              $ht2->addRow(array($not));
+          }
+      } 
+
+
+        $this->addRow(array($ht1,$ht2));
+    }
+    // -X2C
+
+} // -X2C Class :HTML_Titulares
+?>
index 90f53319c8d719ac07bc338a081fc5fa7ca5df38..8a6c0b26013ca19c4814d5a4f30486c435368bd2 100644 (file)
@@ -2,72 +2,25 @@
 <?
   require_once '../local_lib/copete.php';
   $c = new Copete('noticias');
-  echo $c->toHTML();
-?>
-<table width='760' border='0'>
-  <tr>
-    <td width='160' valign='top'>
-      <?
-          require_once '../local_lib/intranetdb.php';
-          require_once 'MECON/HTML/Arbol/ArbolDB.php';
-          $db = IntranetDB::connect();
-         $dbdata = array(
+  $c->display();
+  $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
+  require_once '../local_lib/intranetdb.php';
+  require_once 'MECON/HTML/Arbol/ArbolDB.php';
+  $db = IntranetDB::connect();
+  $dbdata = array(
                'db' => $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();
-     ?>
-    </td>
-    <td width='600'>
-    <?
-       require_once '../../lib/noticia.php';
-       require_once '../local_lib/HTML_Noticia.php';
-       require_once '../../lib/mecondavdb.php';
-       $db = MEconDAVDB::Connect();
-       $hoy = new Date();
-       $fecha_nuevo  = $hoy->format('%Y-%m-%d');
-       $hoy->subtractSeconds(60*60*24*7);//7 dias
-       $fecha_limite = $hoy->format('%Y-%m-%d');
-       $query = "SELECT Articles.article_id,
-                        IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
-                 FROM Articles, ArticlePublicationStates
-                WHERE Articles.article_publication_state_id =
-                       ArticlePublicationStates.article_publication_state_id
-                AND ArticlePublicationStates.publication_state_id=5
-                AND Articles.publication_date > '$fecha_limite' 
-                ORDER BY Articles.publication_date desc";
-       $result = $db->query($query);
-       if(DB::isError($result))
-         die($result->getMessage("query mal hecho"));
-       $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
-       $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
-       $impar = true;
-       while($row = $result->fetchRow())
-       {
-         $n = new noticia($row[0]);
-         $not = new HTML_Noticia($n);
-        if($row[1] == 'NUEVA')
-             $not->setNuevo(true);
-        if($impar)
-        {
-          $impar = false;
-           $ht1->addRow(array($not));
-        }
-        else
-        {
-          $impar = true;
-           $ht2->addRow(array($not));
-        }
-       }
-       $ht = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
-       $ht->addRow(array($ht1,$ht2));
-       $ht->display();
-    ?>
-    </td>
-  </tr>
-</table>
+  $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
+
+  require_once '../local_lib/HTML_Titulares.php';
+  $titulares = new HTML_Titulares(null, 7);
+  $noticias->addRow(array($arbol,$titulares));
+  $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
+  $noticias->updateCellAttributes(0, 1, array('width'=>'600'));
+  $noticias->display();
+?>
 </body>