You are here

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\Form

Code

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;
}