1 | <?php |
||
25 | class DataTablesEnumerator { |
||
26 | |||
27 | /** |
||
28 | * Enumerates cell types. |
||
29 | * |
||
30 | * @return string[] Returns the cell types enumeration. |
||
31 | */ |
||
32 | public static function enumCellTypes(): array { |
||
38 | |||
39 | /** |
||
40 | * Enumerates dirs. |
||
41 | * |
||
42 | * @return string[] Returns the dirs enumeration. |
||
43 | */ |
||
44 | public static function enumDirs(): array { |
||
50 | |||
51 | /** |
||
52 | * Enumerates order sequences. |
||
53 | * |
||
54 | * @return string[] Returns the order sequences enumeration. |
||
55 | */ |
||
56 | public static function enumOrderSequences(): array { |
||
62 | |||
63 | /** |
||
64 | * Enumerates parameters. |
||
65 | * |
||
66 | * @return string[] Returns the parameters enumeration. |
||
67 | */ |
||
68 | public static function enumParameters(): array { |
||
78 | |||
79 | /** |
||
80 | * Enumerates rows. |
||
81 | * |
||
82 | * @return string[] Returns the rows enumeration. |
||
83 | */ |
||
84 | public static function enumRows(): array { |
||
92 | |||
93 | /** |
||
94 | * Enumerates types. |
||
95 | * |
||
96 | * @return string[] Returns the types enumeration. |
||
97 | */ |
||
98 | public static function enumTypes(): array { |
||
108 | } |
||
109 |