| 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 column. |
||
| 45 | * |
||
| 46 | * @return string Returns the column. |
||
| 47 | */ |
||
| 48 | public function getColumn() { |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Get the prefix. |
||
| 54 | * |
||
| 55 | * @return string Returns the prefix. |
||
| 56 | */ |
||
| 57 | public function getPrefix() { |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Set the column. |
||
| 63 | * |
||
| 64 | * @param string $column The column. |
||
| 65 | * @return DataTablesMapping Returns this DataTables mapping. |
||
| 66 | */ |
||
| 67 | public function setColumn($column) { |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Set the prefix. |
||
| 74 | * |
||
| 75 | * @param string $prefix The prefix. |
||
| 76 | * @return DataTablesMapping Returns this DataTables mapping. |
||
| 77 | */ |
||
| 78 | public function setPrefix($prefix) { |
||
| 82 | |||
| 83 | } |
||
| 84 |