function paragraphs_test_field_widget_single_element_entity_reference_paragraphs_form_alter

Implements hook_field_widget_single_element_WIDGET_TYPE_form_alter().

File

paragraphs/tests/modules/paragraphs_test/paragraphs_test.module, line 48
Test module for testing the paragraphs module.

Code

function paragraphs_test_field_widget_single_element_entity_reference_paragraphs_form_alter(&$element, &$form_state, $context) {
  if ($element['#paragraph_type'] == 'altered_paragraph') {
    $element['subform']['field_text']['widget'][0]['#title'] = 'Altered title';
  }
}