Add frankenstein module

This commit is contained in:
benjamin melançon 2020-04-30 14:13:18 -04:00
parent 986015cbae
commit 6784edc091
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<?php
/**
* Implements hook_form_alter().
*/
function frankenstein_form_node_frankenstein_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state) {
$form['actions']['submit']['#value'] = t('Re-animate!');
}