15 lines
235 B
PHP
15 lines
235 B
PHP
<?php
|
|
|
|
namespace OCA\Gestion\Helpers;
|
|
|
|
class FileExportHelpers
|
|
{
|
|
|
|
|
|
public static function FormatTextForExport(string $text){
|
|
$textFormatted = utf8_decode(html_entity_decode($text));
|
|
return $textFormatted;
|
|
}
|
|
|
|
}
|