]> git.llucax.com Git - mecon/intranet.git/blob - lib/noticia.php
arreglo copete....1 mas
[mecon/intranet.git] / lib / noticia.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                              |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                    |
8 // |                                                                    |
9 // | Intranet is free software; you can redistribute it and/or modify  |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | Intranet is distributed in the hope that it will be useful, but   |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Jul 3 14:49:15 2003                                   |
24 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
28 //
29
30 require_once 'mecondavdb.php';
31 require_once 'Date.php';
32
33
34 // +X2C Class 161 :noticia
35 /**
36  * @access public
37  */
38 class noticia {
39     /**
40      * @var    int $Noticia
41      * @access public
42      */
43     var $Noticia;
44
45     // ~X2C
46
47     // +X2C Operation 169
48     /**
49      * @param  int $noticia codigo de la noticia
50      *
51      * @return void
52      * @access public
53      */
54     function noticia($noticia) // ~X2C
55     {
56         $this->noticia = $noticia;
57         $db = MEconDAVDB::Connect();
58         $query = "SELECT A.headline, A.title, A.abstract, A.article,
59                          A.publication_date, S.description
60                   FROM Articles A, Sections S
61                   WHERE Article_id = $noticia
62                   AND A.section_id = S.section_id";
63         $result = $db->query($query);
64         $row = $result->fetchRow();
65         $this->titulo = $row[0];
66         $this->titulo2 = $row[1];
67         $this->sintesis = $row[2];
68         $this->texto = $row[3];
69         $this->fecha = new Date($row[4]);
70         $this->seccion = $row[5];
71     }
72     // -X2C
73
74     // +X2C Operation 180
75     /**
76      * @return string
77      * @access public
78      */
79     function getTitulo() // ~X2C
80     {
81         return $this->titulo;
82     }
83     // -X2C
84
85     // +X2C Operation 181
86     /**
87      * @return string
88      * @access public
89      */
90     function getTexto() // ~X2C
91     {
92         return $this->texto;
93     }
94     // -X2C
95
96     // +X2C Operation 182
97     /**
98      * @return string
99      * @access public
100      */
101     function getSintesis() // ~X2C
102     {
103         return $this->sintesis;
104     }
105     // -X2C
106
107     // +X2C Operation 183
108     /**
109      * @return string
110      * @access public
111      */
112     function getTitulo2() // ~X2C
113     {
114         return $this->titulo2;
115     }
116     // -X2C
117
118     // +X2C Operation 186
119     /**
120      * @return string
121      * @access public
122      */
123     function getFecha() // ~X2C
124     {
125         return $this->fecha;
126     }
127     // -X2C
128
129     // +X2C Operation 191
130     /**
131      * @return void
132      * @access public
133      */
134     function getSeccion() // ~X2C
135     {
136         return $this->seccion;
137     }
138     // -X2C
139
140 } // -X2C Class :noticia
141 ?>