]> git.llucax.com Git - mecon/intranet.git/blob - lib/noticia.php
Se pone el nuevo link para cambiar la password.
[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 'Date.php';
31 require_once 'intranetdb.php';
32
33 // +X2C Class 161 :noticia
34 /**
35  * @access public
36  */
37 class noticia {
38     /**
39      * @var    int $Noticia
40      * @access public
41      */
42     var $Noticia;
43
44     // ~X2C
45
46     // +X2C Operation 169
47     /**
48      * @param  int $noticia codigo de la noticia
49      *
50      * @return void
51      * @access public
52      */
53     function noticia($noticia) // ~X2C
54     {
55         $this->noticia = $noticia;
56         $db = IntranetDB::Connect();
57         $query = "SELECT A.headline, A.title, A.abstract, A.article,
58                          A.publication_date, S.description, S.section_id
59                   FROM MEconDAV.Articles A, MEconDAV.Sections S
60                   WHERE Article_id = $noticia
61                   AND A.section_id = S.section_id";
62         $result = $db->query($query);
63         $row = $result->fetchRow();
64         $this->titulo = $row[0];
65         $this->titulo2 = $row[1];
66         $this->sintesis = $row[2];
67         $this->texto = $row[3];
68         $this->fecha = new Date($row[4]);
69         $this->seccion = $row[5];
70         $this->id_seccion = $row[6];
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 Operation 197
141     /**
142      * @return void
143      * @access public
144      */
145     function getidSeccion() // ~X2C
146     {
147         return $this->id_seccion;
148     }
149     // -X2C
150
151     // +X2C Operation 199
152     /**
153      * @return void
154      * @access public
155      */
156     function getLinks() // ~X2C
157     {
158         $db = MEconDAVDB::Connect();
159         $sql = "SELECT R.link_id, A.headline
160                 FROM MEconDAV.Relations R, MEconDAV.Articles A
161                 WHERE R.link_id = A.article_id
162                 AND   R.article_id = ".$this->noticia;
163         $result =& $db->query($sql);
164         $links = array();
165         while($row =& $result->fetchRow())
166           $links[] = array('numero'=>$row[0], 'texto'=>$row[1]);
167         return $links;
168     }
169     // -X2C
170
171     // +X2C Operation 200
172     /**
173      * @return void
174      * @access public
175      */
176     function getArchivos() // ~X2C
177     {
178         $db = MEconDAVDB::Connect();
179         $sql = "SELECT file_for_article_id, caption FROM MEconDAV.FilesForArticle WHERE article_id = ".$this->noticia;
180         $result =& $db->query($sql);
181         $archivos = array();
182         while($row =& $result->fetchRow())
183           $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
184         return $archivos;
185     }
186     // -X2C
187
188 } // -X2C Class :noticia
189 ?>