mlncn-presentations/when-not-module-for-that/frankenstein/frankenstein.module
2020-04-30 14:13:18 -04:00

8 lines
225 B
Text

<?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!');
}