Proyectos de Subversion LeadersLinked - Services

Rev

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

Rev 290 Rev 295
Línea 287... Línea 287...
287
        } else {
287
        } else {
288
            return;
288
            return;
289
        }
289
        }
290
    }
290
    }
Línea -... Línea 291...
-
 
291
    
-
 
292
  
-
 
293
    
-
 
294
    
-
 
295
 
291
    
296
    
292
    /**
297
    /**
293
     * 
298
     * 
294
     * @return string
299
     * @return string
295
     */
300
     */
Línea 341... Línea 346...
341
    public function getPathFeed()
346
    public function getPathFeed()
342
    {
347
    {
343
        return $this->config['leaderslinked.minio.fullpath_feed'];
348
        return $this->config['leaderslinked.minio.fullpath_feed'];
344
    }
349
    }
Línea -... Línea 350...
-
 
350
    
-
 
351
    
-
 
352
    
-
 
353
    /**
-
 
354
     *
-
 
355
     * @return string
-
 
356
     */
-
 
357
    public function getPathMessage()
-
 
358
    {
-
 
359
        return $this->config['leaderslinked.minio.fullpath_message'];
-
 
360
    }
345
    
361
    
346
    /**
362
    /**
347
     *
363
     *
348
     * @return string
364
     * @return string
349
     */
365
     */
Línea 390... Línea 406...
390
    
406
    
391
    /**
407
    /**
392
     *
408
     *
393
     * @return string
409
     * @return string
394
     */
410
     */
395
    public function getPathJhSelfEvaluation()
411
    public function getPathSelfEvaluation()
396
    {
412
    {
397
        return $this->config['leaderslinked.minio.fullpath_self_evaluation'];
413
        return $this->config['leaderslinked.minio.fullpath_self_evaluation'];
Línea 398... Línea 414...
398
    }
414
    }
Línea 530... Línea 546...
530
            return $this->s3Files->deleteObject($remoto);
546
            return $this->s3Files->deleteObject($remoto);
531
        } else {
547
        } else {
532
            return true;
548
            return true;
533
        }
549
        }
534
    }
550
    }
-
 
551
    
-
 
552
    /**
-
 
553
     *
-
 
554
     * @param string $path
-
 
555
     * @param string $code
-
 
556
     * @return boolean
-
 
557
     */
-
 
558
    public function deleteDirectory($path, $code)
-
 
559
    {
-
 
560
        $remoto = $path . '/' . $code;
-
 
561
        if($this->s3Files->objectExist($remoto)) {
-
 
562
            return $this->s3Files->deleteObject($remoto);
-
 
563
        } else {
-
 
564
            return true;
-
 
565
        }
-
 
566
    }
-
 
567
    
Línea 535... Línea 568...
535
 
568
 
536
 
569
 
537
    /**
570
    /**