protected function GathercontentMappingImportForm::actions in GatherContent 8
@inheritdoc
Overrides EntityForm::actions
File
- src/
Form/ GathercontentMappingImportForm.php, line 114
Class
- GathercontentMappingImportForm
- Class GathercontentMappingImportForm.
Namespace
Drupal\gathercontent\FormCode
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this
->t('Select');
$actions['close'] = array(
'#type' => 'submit',
'#value' => t('Close'),
);
return $actions;
}