X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/b10c78c6eff59530aad83c934ea24405cc26aee3..refs/heads/master:/src/lib/Tema.php diff --git a/src/lib/Tema.php b/src/lib/Tema.php index 72ea56d..1fbb273 100644 --- a/src/lib/Tema.php +++ b/src/lib/Tema.php @@ -57,28 +57,6 @@ class Tema extends Item return fappendcsv($this->temasCSVConst, array($this->id, $this->autor, $this->nombre, $this->icono, $this->texto, $this->fecha)); } - function saveExisting() { - if (($f = fopen($this->temasCSVConst, 'r')) == false) return false; // error - $index = 0; - $indexSave = 0; - while (!feof($f)) - { - $d = fgetcsv($f, 4096); - $index++; - if ($d[0] == $this->id) - { - fclose($f); - if (($f = fopen($this->temasCSVConst, 'r+')) == false) return false; // error - while ($indexSave!=($index-1)) { fgetcsv($f, 4096); $indexSave++; } - fputcsv($f, array($this->id, $this->autor, $this->nombre, $this->icono, $this->texto, $this->fecha)); - fclose($f); - return true; - } - } - fclose($f); - return false; - } - function saveLoadThis( $pId, $pNombre, $pAutor, $pDescripcion, $pIcono ) { $this->id = $pId; $this->autor = $pAutor; @@ -105,24 +83,6 @@ class Tema extends Item return $resultado; } - function modificar( $pId, $pNombre, $pAutor, $pDescripcion, $pIcono ) { - $this->saveLoadThis( $pId, $pNombre, $pAutor, $pDescripcion, $pIcono ); - $resultado = ""; - //Se obtiene el ID mas alto actual - if (!$this->saveExisting()) { - $resultado = "ERROR al modificar el Tema '" . $pNombre . "'. Revise que los parametros sean los adecuados"; - file_log_add( $pAutor, $resultado); - } else { - if (!copy($pIcono, "temas/" . $pId)) { - $resultado = "No se pudo modificar la foto."; - file_log_add( $pAutor, $resultado); - } else { - file_log_add( $pAutor, "Se modificó el el '" . $pNombre . "'"); - } - } - return $resultado; - } - function toHTML() { $objUser = new Usuario($this->autor); ?>