1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace App\Enum;
abstract class ImportEnum
{
const IMPORT_GROUPE = 'groupe';
const IMPORT_COMPTOIR = 'comptoir';
const IMPORT_PRESTATAIRE = 'prestataire';
const IMPORT_ADHERENT = 'adherent';
const IMPORT_OPERATION = 'operation';
const IMPORT_OPERATION_SIEGE = 'siege';
const IMPORT_OPERATION_GROUPE = 'groupe';
const IMPORT_OPERATION_COMPTOIR = 'comptoir';
const IMPORT_OPERATION_PRESTATAIRE = 'prestataire';
const IMPORT_OPERATION_ADHERENT = 'adherent';
/** @var array user friendly named type */
protected static $typeName = [
self::IMPORT_GROUPE => 'Groupe(s)',
self::IMPORT_COMPTOIR => 'Comptoir(s)',
self::IMPORT_PRESTATAIRE => 'Prestataire(s)',
self::IMPORT_ADHERENT => 'Adherent(s)',
self::IMPORT_OPERATION => 'Opération(s)',
];
/**
* @param string $typeShortName
*
* @return string
*/
public static function getTypeName($typeShortName)
{
if (!isset(static::$typeName[$typeShortName])) {
return "Unknown type ($typeShortName)";
}
return static::$typeName[$typeShortName];
}
/**
* @return array<string>
*/
public static function getAvailableTypes()
{
return [
self::IMPORT_GROUPE,
self::IMPORT_COMPTOIR,
self::IMPORT_PRESTATAIRE,
self::IMPORT_ADHERENT,
self::IMPORT_OPERATION,
];
}
/**
* @return array<string>
*/
public static function getAvailableOperators()
{
return [
self::IMPORT_OPERATION_SIEGE,
self::IMPORT_OPERATION_GROUPE,
self::IMPORT_OPERATION_COMPTOIR,
self::IMPORT_OPERATION_PRESTATAIRE,
self::IMPORT_OPERATION_ADHERENT,
];
}
}