| 1 | <?php |
||
| 20 | class DataTablesMapping implements DataTablesMappingInterface { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Column. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $column; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Parent. |
||
| 31 | * |
||
| 32 | * @var DataTablesColumnInterface |
||
| 33 | */ |
||
| 34 | private $parent; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Prefix. |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | private $prefix; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Constructor. |
||
| 45 | */ |
||
| 46 | public function __construct() { |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritDoc} |
||
| 52 | */ |
||
| 53 | public function getColumn() { |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritDoc} |
||
| 59 | */ |
||
| 60 | public function getParent() { |
||
| 63 | |||
| 64 | /** |
||
| 65 | * {@inheritDoc} |
||
| 66 | */ |
||
| 67 | public function getPrefix() { |
||
| 70 | |||
| 71 | /** |
||
| 72 | * {@inheritDoc} |
||
| 73 | */ |
||
| 74 | public function setColumn($column) { |
||
| 78 | |||
| 79 | /** |
||
| 80 | * Set the parent. |
||
| 81 | * |
||
| 82 | * @param DataTablesColumnInterface $parent The parent. |
||
| 83 | * @return DataTablesMappingInterface Returns this mapping. |
||
| 84 | */ |
||
| 85 | public function setParent(DataTablesColumnInterface $parent) { |
||
| 89 | |||
| 90 | /** |
||
| 91 | * {@inheritDoc} |
||
| 92 | */ |
||
| 93 | public function setPrefix($prefix) { |
||
| 97 | } |
||
| 98 |