function BlockEntitySettingTrayForm::actions
Overrides BlockForm::actions
File
- 
              core/
modules/ settings_tray/ src/ Block/ BlockEntitySettingTrayForm.php, line 82  
Class
- BlockEntitySettingTrayForm
 - Provides form for block instance forms when used in the off-canvas dialog.
 
Namespace
Drupal\settings_tray\BlockCode
protected function actions(array $form, FormStateInterface $form_state) {
  $actions = parent::actions($form, $form_state);
  $actions['submit']['#value'] = $this->t('Save @block', [
    '@block' => $this->entity
      ->getPlugin()
      ->getPluginDefinition()['admin_label'],
  ]);
  $actions['delete']['#access'] = FALSE;
  return $actions;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.