public function MessageForm::actions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/contact/src/MessageForm.php \Drupal\contact\MessageForm::actions()
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 165 - Contains \Drupal\contact\MessageForm.
Class
- MessageForm
- Form controller for contact message forms.
Namespace
Drupal\contactCode
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;
}