]> git.llucax.com Git - mecon/intranet.git/blob - lib/noticia.php
50e89704f530963bd0b9c5f64f852490b0ddb0f1
[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 headline, title, abstract, article, publication_date
59                   FROM Articles
60                   WHERE Article_id = $noticia";
61         $result = $db->query($query);
62         $row = $result->fetchRow();
63         $this->titulo = $row[0];
64         $this->titulo2 = $row[1];
65         $this->sintesis = $row[2];
66         $this->texto = $row[3];
67         $this->fecha = new Date($row[4]);
68     }
69     // -X2C
70
71     // +X2C Operation 180
72     /**
73      * @return string
74      * @access public
75      */
76     function getTitulo() // ~X2C
77     {
78         return $this->titulo;
79     }
80     // -X2C
81
82     // +X2C Operation 181
83     /**
84      * @return string
85      * @access public
86      */
87     function getTexto() // ~X2C
88     {
89         return $this->texto;
90     }
91     // -X2C
92
93     // +X2C Operation 182
94     /**
95      * @return string
96      * @access public
97      */
98     function getSintesis() // ~X2C
99     {
100         return $this->sintesis;
101     }
102     // -X2C
103
104     // +X2C Operation 183
105     /**
106      * @return string
107      * @access public
108      */
109     function getTitulo2() // ~X2C
110     {
111         return $this->titulo2;
112     }
113     // -X2C
114
115     // +X2C Operation 186
116     /**
117      * @return string
118      * @access public
119      */
120     function getFecha() // ~X2C
121     {
122         return $this->fecha;
123     }
124     // -X2C
125
126 } // -X2C Class :noticia
127 ?>