Thanasoft-H2F/gestion/lib/Helpers/FolderHelpers.php
Narindra ezway 124a5ac324 wip:mail-pjs
2025-03-19 18:21:59 +03:00

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;
}
}