| 1 | <?php |
||
| 12 | class DateColumn extends AbstractColumn |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $dateFormat; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | 1 | public function getDateFormat() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $dateFormat |
||
| 29 | * |
||
| 30 | * @return DateColumn |
||
| 31 | */ |
||
| 32 | 1 | public function setDateFormat($dateFormat) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @param string|null $name |
||
| 41 | * @param string|null $dateFormat |
||
| 42 | */ |
||
| 43 | 1 | public function __construct($name = null, $dateFormat = null) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | 1 | public function getType() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * @return string |
||
| 61 | */ |
||
| 62 | 2 | public function render() |
|
| 71 | } |
||
| 72 |