Proyectos de Subversion LeadersLinked - Services

Rev

Rev 298 | Rev 320 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 298 Rev 302
Línea 296... Línea 296...
296
        return $this->s3Files->getPresignedUrl($remoto);
296
        return $this->s3Files->getPresignedUrl($remoto);
297
    }
297
    }
Línea -... Línea 298...
-
 
298
    
-
 
299
  
-
 
300
    
-
 
301
    /**
-
 
302
     *
-
 
303
     * @return string
-
 
304
     */
-
 
305
    public function getPathMedia()
Línea 298... Línea 306...
298
    
306
    {
299
  
307
        return $this->config['leaderslinked.minio.fullpath_media'];
Línea 511... Línea 519...
511
        return $this->s3Files->objectExist($filename);
519
        return $this->s3Files->objectExist($filename);
512
    }
520
    }
Línea 513... Línea 521...
513
    
521
    
514
    /**
522
    /**
515
     * 
523
     * 
516
     * @param string $filename
524
     * @param string $remote
517
     * @param string $filepath
525
     * @param string $local
518
     * @return boolean
526
     * @return boolean
519
     */
527
     */
520
    public function putObject($filename, $filepath)
528
    public function putObject($remote, $local)
521
    {
529
    {
522
       return $this->s3Files->putObject($filename, $filepath);
530
        return $this->s3Files->putObject($remote, $local);
Línea 523... Línea 531...
523
    }
531
    }
524
    
532