You are here

protected function AppForm::saveButtonLabel in Apigee Edge 8

Returns the label of the Save button on the form.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translatable label.

1 call to AppForm::saveButtonLabel()
AppForm::actions in src/Entity/Form/AppForm.php
Returns an array of supported actions for the current entity form.
1 method overrides AppForm::saveButtonLabel()
AppCreateForm::saveButtonLabel in src/Entity/Form/AppCreateForm.php
Returns the label of the Save button on the form.

File

src/Entity/Form/AppForm.php, line 114

Class

AppForm
Base entity form for developer- and team (company) app create/edit forms.

Namespace

Drupal\apigee_edge\Entity\Form

Code

protected function saveButtonLabel() : TranslatableMarkup {
  return $this
    ->t('Save');
}