13 lines
347 B
PHP
13 lines
347 B
PHP
<?php
|
|
|
|
namespace OCA\Gestion\Helpers;
|
|
|
|
class FolderHelpers
|
|
{
|
|
public static function GetDefuntFolder(string $clientEntreprise,string $defuntNom){
|
|
$clientRacineFolder = 'CLIENTS/'.strtoupper($clientEntreprise).'/';
|
|
$defuntFolder = $clientRacineFolder.'DEFUNTS/'.strtoupper($defuntNom).'/';
|
|
return $defuntFolder;
|
|
}
|
|
}
|