]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Comentario.php
Aca esta mi bugfixing, para que le llevemos algo que le guste mas.
[z.facultad/75.43/tp1.git] / src / lib / Comentario.php
1 <?php
2 // Grupo 10
3 //
4 // Lucarella, Schein, Arena
5 //
6 // Creado: Sebastian Arena
7
8 require_once 'Item.php';
9
10 class Comentario extends Item
11 {
12         var $id;
13     
14         /*Extra Data*/
15         var $autor_original;
16         var $autor_foto;
17         var $autor_apellido;
18     
19         var $comentarioCSVBaseConst = 'data/comentarios';
20         var $comentarioCSVConst = '';
21     /* 
22                 Formato en Disco:
23                         id | autor | comentario | fecha
24         */
25
26         function Comentario($param, $pInfo_ID, $loadFromRecord) {
27                 $this->comentarioCSVConst = $this->comentarioCSVBaseConst . "." . $pInfo_ID . ".csv";
28                 if (!$loadFromRecord) {
29             if ($param) {
30                                 $this->id = $param;
31                 $this->reload();
32                         }
33                 } else {
34                         $this->id                       = $param[0];
35                         $this->autor            = $param[1];
36             $this->texto                = $param[2];
37                         $this->fecha            = $param[3];
38                 }
39     }
40
41         function reload() {
42                 if (is_file($this->comentarioCSVConst)) {
43                         $record_info = fsearchcsv($this->comentarioCSVConst, $this->id);
44             if ($record_info) {
45                                 $this->id                       = $param[0];
46                                 $this->autor            = $param[1];
47                                 $this->texto            = $param[2];
48                                 $this->fecha            = $param[3];
49                         }
50                 }
51         }
52
53         function saveNew() {
54                 return fappendcsv($this->comentarioCSVConst, array( $this->id, $this->autor, $this->texto, $this->fecha ));
55         }
56
57         function saveLoadThis( $pId, $pInfo_ID, $pComentario, $pAutor ) {
58                 $this->id                       = $pId;
59                 $this->autor            = $pAutor;
60                 $this->texto            = preg_replace('[\n|\r\n]','<br/>',$pComentario);
61                 $this->fecha            = time();
62                 $this->comentarioCSVConst = $this->comentarioCSVBaseConst . "." . $pInfo_ID . ".csv";
63         }
64
65     function ingresar( $pId, $pInfo_ID, $pComentario, $pAutor ) {
66                 $this->saveLoadThis( $pId, $pInfo_ID, $pComentario, $pAutor );
67                 $resultado = "";
68         if (!$this->saveNew()) {
69                         $resultado = "<strong>ERROR</strong> al agregar el comentario. Revise que los parametros sean los adecuados";
70                         file_log_add($pAutor,$resultado);
71         } else {
72                         file_log_add($pAutor,"Se agregó el comentario");
73                 }
74                 return $resultado;
75         }
76
77         function toHTML() {
78         ?><tr>
79                         <?php
80                                 if ($this->autor_original != $this->autor) {
81                         ?>
82                         <td><img src="<?php echo $this->autor_foto;?>" border="0" alt="icono usuario"/></td>
83                         <td><?php echo $this->autor_apellido;?></td><?php
84                                 } else {
85                         ?>
86                         <td colspan="2"><?php echo $this->autor_original;?> (autor original)</td><?php
87                                 }
88                         ?>
89             <td><?php echo $this->texto;?></td>
90                   </tr>
91                 <?php
92         }
93 }
94
95 ?>