function datetime_node_prepare

Implements hook_node_prepare().

File

drupal/core/modules/datetime/datetime.module, line 1147
Field hooks to implement a simple datetime field.

Code

function datetime_node_prepare(NodeInterface $node) {

  // Prepare the 'Authored on' date to use datetime.
  $node->date = new DrupalDateTime($node->created);
}