| 1 | <?php |
||
| 20 | class DataTablesMapping { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Column. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $column; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Prefix. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | private $prefix; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Constructor. |
||
| 38 | */ |
||
| 39 | public function __construct() { |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the alias. |
||
| 45 | * |
||
| 46 | * @return string Returns the alias. |
||
| 47 | */ |
||
| 48 | public function getAlias() { |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Get the column. |
||
| 57 | * |
||
| 58 | * @return string Returns the column. |
||
| 59 | */ |
||
| 60 | public function getColumn() { |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Get the prefix. |
||
| 66 | * |
||
| 67 | * @return string Returns the prefix. |
||
| 68 | */ |
||
| 69 | public function getPrefix() { |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Set the column. |
||
| 75 | * |
||
| 76 | * @param string $column The column. |
||
| 77 | * @return DataTablesMapping Returns this DataTables mapping. |
||
| 78 | */ |
||
| 79 | public function setColumn($column) { |
||
| 83 | |||
| 84 | /** |
||
| 85 | * Set the prefix. |
||
| 86 | * |
||
| 87 | * @param string $prefix The prefix. |
||
| 88 | * @return DataTablesMapping Returns this DataTables mapping. |
||
| 89 | */ |
||
| 90 | public function setPrefix($prefix) { |
||
| 94 | |||
| 95 | } |
||
| 96 |