1 | <?php |
||
21 | final class DataTablesMapping { |
||
22 | |||
23 | /** |
||
24 | * Column. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | private $column; |
||
29 | |||
30 | /** |
||
31 | * Prefix. |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | private $prefix; |
||
36 | |||
37 | /** |
||
38 | * Constructor. |
||
39 | */ |
||
40 | public function __construct() { |
||
43 | |||
44 | /** |
||
45 | * Get the column. |
||
46 | * |
||
47 | * @return string Returns the column. |
||
48 | */ |
||
49 | public function getColumn() { |
||
52 | |||
53 | /** |
||
54 | * Get the prefix. |
||
55 | * |
||
56 | * @return string Returns the prefix. |
||
57 | */ |
||
58 | public function getPrefix() { |
||
61 | |||
62 | /** |
||
63 | * Set the column. |
||
64 | * |
||
65 | * @param string $column The column. |
||
66 | * @return DataTablesMapping Returns the DataTables mapping. |
||
67 | */ |
||
68 | public function setColumn($column) { |
||
72 | |||
73 | /** |
||
74 | * Set the prefix. |
||
75 | * |
||
76 | * @param string $prefix The prefix. |
||
77 | * @return DataTablesMapping Returns the DataTables mapping. |
||
78 | */ |
||
79 | public function setPrefix($prefix) { |
||
83 | |||
84 | } |
||
85 |