| 1 | <?php |
||
| 8 | abstract class AbstractDateHandler extends AbstractHandler { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * The format in which the dates are saved in Drupal's database. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $dateFormat = NULL; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Converts a date string into the format expected by Drupal. |
||
| 19 | * |
||
| 20 | * @return string |
||
| 21 | * The re-formatted date string. |
||
| 22 | */ |
||
| 23 | protected function formatDateValue($value) { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function expand($values) { |
||
| 54 | |||
| 55 | } |
||
| 56 |