function field_collection_form_field_collection_edit_form_alter in Field collection 8
Same name and namespace in other branches
- 8.3 field_collection.module \field_collection_form_field_collection_edit_form_alter()
Implements hood_form_FORM_ID_alter() for field_collection_edit_form.
Remove the save button since there are no options to save.
File
- ./
field_collection.module, line 102 - Module implementing field collection field type.
Code
function field_collection_form_field_collection_edit_form_alter(&$form, FormStateInterface $form_state) {
unset($form['actions']);
}