]> git.llucax.com Git - mecon/intranet.git/blob - lib/noticia.php
1f9a6656faf7a0ea93135c749d27e12661c36794
[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, S.section_id
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         $this->id_seccion = $row[6];
72     }
73     // -X2C
74
75     // +X2C Operation 180
76     /**
77      * @return string
78      * @access public
79      */
80     function getTitulo() // ~X2C
81     {
82         return $this->titulo;
83     }
84     // -X2C
85
86     // +X2C Operation 181
87     /**
88      * @return string
89      * @access public
90      */
91     function getTexto() // ~X2C
92     {
93         return $this->texto;
94     }
95     // -X2C
96
97     // +X2C Operation 182
98     /**
99      * @return string
100      * @access public
101      */
102     function getSintesis() // ~X2C
103     {
104         return $this->sintesis;
105     }
106     // -X2C
107
108     // +X2C Operation 183
109     /**
110      * @return string
111      * @access public
112      */
113     function getTitulo2() // ~X2C
114     {
115         return $this->titulo2;
116     }
117     // -X2C
118
119     // +X2C Operation 186
120     /**
121      * @return string
122      * @access public
123      */
124     function getFecha() // ~X2C
125     {
126         return $this->fecha;
127     }
128     // -X2C
129
130     // +X2C Operation 191
131     /**
132      * @return void
133      * @access public
134      */
135     function getSeccion() // ~X2C
136     {
137         return $this->seccion;
138     }
139     // -X2C
140
141     // +X2C Operation 197
142     /**
143      * @return void
144      * @access public
145      */
146     function getidSeccion() // ~X2C
147     {
148         return $this->id_seccion;
149     }
150     // -X2C
151
152     // +X2C Operation 199
153     /**
154      * @return void
155      * @access public
156      */
157     function getLinks() // ~X2C
158     {
159         $db = MEconDAVDB::Connect();
160         $sql = "SELECT link_id FROM Relations WHERE article_id = ".$this->noticia;
161         return $db->getCol($sql);
162     }
163     // -X2C
164
165     // +X2C Operation 200
166     /**
167      * @return void
168      * @access public
169      */
170     function getArchivos() // ~X2C
171     {
172         $db = MEconDAVDB::Connect();
173         $sql = "SELECT file_for_article_id, caption FROM FilesForArticle WHERE article_id = ".$this->noticia;
174         $result =& $db->query($sql);
175         $archivos = array();
176         while($row =& $result->getRow())
177           $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
178         return $archivos;
179     }
180     // -X2C
181
182 } // -X2C Class :noticia
183 ?>