Created
October 18, 2017 05:40
-
-
Save init90/d4f95d192383dc2238aa83e2c1ee5444 to your computer and use it in GitHub Desktop.
Drupal 8, Create new revision.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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