コード例 #1
0
 /**
  * {@inheritdoc}
  */
 protected function actions(array $form, FormStateInterface $form_state)
 {
     $actions = parent::actions($form, $form_state);
     // Change the submit button value.
     $actions['submit']['#value'] = $this->t('Update @type', array('@type' => $this->entity->label()));
     return $actions;
 }
コード例 #2
0
ファイル: EckEntityTypeAddForm.php プロジェクト: jokas/d8.dev
 /**
  * {@inheritdoc}
  */
 protected function actions(array $form, FormStateInterface $form_state)
 {
     $actions = parent::actions($form, $form_state);
     // Change the submit button value.
     $actions['submit']['#value'] = $this->t('Create entity type');
     return $actions;
 }