]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/T/Intento.php
Intengo::base_path() eliminado, ahora se usa path().
[software/sercom-old.git] / src / T / Intento.php
index e758a0d4172558399017bdca45eff6834dc6fde4..3bb6f2448292b8ff66cc61bb086ad564954e980e 100644 (file)
@@ -36,7 +36,6 @@ class T_Intento
         $this->entrega = $ent;
         $this->intento = $intento;
         $this->cuatrimestre = $cuat;
-        $this->base_dir = 'intentos';
     }
 
     /**
@@ -183,13 +182,6 @@ EOT;
         return $mail;
     }
 
-    /**
-     * Obtiene el directorio en el cual se almacena el intento.
-     */
-    function path() {
-        return $this->base_path() . "/{$this->padron}/{$this->intento}";
-    }
-
     /**
      * Obtiene el directorio base de la entrega.
      * El directorio base no contempla los datos propios del intento, como
@@ -197,9 +189,8 @@ EOT;
      * @param base_dir Directorio base, si no se especifica se usa el directorio
      *                 base del intento.
      */
-    function base_path($base_dir = null) {
-        if (is_null($base_dir)) $base_dir = $this->base_dir;
-        return "$base_dir/{$this->cuatrimestre}/{$this->ejercicio}-{$this->entrega}";
+    function path($base_dir) {
+        return "$base_dir/{$this->cuatrimestre}/{$this->ejercicio}-{$this->entrega}/{$this->padron}/{$this->intento}";
     }
 
 }