public MessageForm::actions(array $form, FormStateInterface $form_state)
Returns an array of supported actions for the current entity form.
@todo Consider introducing a 'preview' action here, since it is used by many entity types.
Overrides EntityForm::actions
File
- core/modules/contact/src/MessageForm.php, line 160
Class
- MessageForm
- Form controller for contact message forms.
Namespace
Drupal\contact
Code
public function actions(array $form, FormStateInterface $form_state) { $elements = parent::actions($form, $form_state); $elements['submit']['#value'] = $this->t('Send message'); $elements['preview'] = array( '#type' => 'submit', '#value' => $this->t('Preview'), '#submit' => array('::submitForm', '::preview'), ); return $elements; }
Please login to continue.