8 lines
225 B
Text
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!');
|
|
}
|