Skip to content

Instantly share code, notes, and snippets.

@init90
Created October 18, 2017 05:40
Show Gist options
  • Select an option

  • Save init90/d4f95d192383dc2238aa83e2c1ee5444 to your computer and use it in GitHub Desktop.

Select an option

Save init90/d4f95d192383dc2238aa83e2c1ee5444 to your computer and use it in GitHub Desktop.
Drupal 8, Create new revision.
$f = \Drupal::entityTypeManager()->getStorage('fee_item')->load(42);
$f->set('default_sum', 0);
$f->setNewRevision(TRUE);
$f->revision_log = t('Display fee item in list2.');
$f->setRevisionCreationTime(REQUEST_TIME);
$f->setRevisionUserId(1);
$f->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment