ajout ref_mimetypes

This commit is contained in:
Jephté Clain 2024-11-08 15:47:05 +04:00
parent a059f0cb42
commit ab744eb1a5
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
namespace nur\sery\ref\web;
class ref_mimetypes {
const TXT = "text/plain";
const CSV = "text/csv";
const BINARY = "application/octet-stream";
const XLS = "application/vnd.ms-excel";
const XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
const ODS = "application/vnd.oasis.opendocument.spreadsheet";
}