X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/0e40dd2e846ce3354468ecc08f501a69f8a56929..f4ec821dadd20be282df0647f41cebfb2607cef4:/src/T/Intento.php?ds=sidebyside diff --git a/src/T/Intento.php b/src/T/Intento.php index e758a0d..3bb6f24 100644 --- a/src/T/Intento.php +++ b/src/T/Intento.php @@ -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}"; } }