protected function AddBlockForm::submitLabel in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Form/AddBlockForm.php \Drupal\layout_builder\Form\AddBlockForm::submitLabel()
Returns the label for the submit button.
Return value
string Submit label.
Overrides ConfigureBlockFormBase::submitLabel
File
- core/
modules/ layout_builder/ src/ Form/ AddBlockForm.php, line 30
Class
- AddBlockForm
- Provides a form to add a block.
Namespace
Drupal\layout_builder\FormCode
protected function submitLabel() {
return $this
->t('Add block');
}