Skip to content

Instantly share code, notes, and snippets.

@generalredneck
Created May 3, 2016 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generalredneck/ee356166b4a326f85dbb47ec69dfbbbf to your computer and use it in GitHub Desktop.
Save generalredneck/ee356166b4a326f85dbb47ec69dfbbbf to your computer and use it in GitHub Desktop.
update hook
name: wg_test
type: module
description: My Awesome Module
core: 8.x
package: Custom
<?php
function wg_test_install() {
db_update('node__body')
->condition('entity_id', 1)
->fields(array('body_value' => "PIECE OF SOMETHING"))
->execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment